[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Access control not working

From: <durwin_at_mgtsciences.com>
Date: 2007-12-13 22:28:38 CET

I have apache configured to work with Subversion. According to the SVN
Book, HTTP method should give me access control down to the folder level.

This is my httpd conf

===
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

<Location /test>
    DAV svn
    SVNPath /home/svnhttp/test
    AuthType Basic
    AuthName "Subversion repository"
    AuthUserFile /etc/svn-auth-file
    Require valid-user
</Location>
===

Here is the conf files in the repository named 'test'

===
authz
[groups]
dev=durwin

[test:/]
#@dev=rw
*=

passwd
[users]
durwin=Back4MaS
peter=Spam2Becky

svnserv.conf
[general]
anon-access = none

password-db = passwd

authz-db = authz

realm = MSI
===

I tried to restrict all access to see if it works. Thats why you see '*='
in authz. But, I can still checkout and commit with this command.

svn co http://server/test

What am I missing?

Regards,

Durwin
Received on Thu Dec 13 22:28:56 2007

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.