I have next SVN repositories structure running Apache 2.2 under Windows Server 2008:
http://example.com/svn/ is targeted to e:\svn
(root)
http://example.com/svn/dir/ is targeted to e:\svn\dir
(some directory with a number of repositories)
http://example.com/svn/dir/repo/ is targeted to e:\svn\dir\repo
(a repository itself)
How to access list so group @foo
had rw
access to repo
?
I have next access list:
[groups]
@foo = user1, user2
[/]
* = r
[dir/repo:/]
@foo = rw
The last string doesn't work in any combination I tried
Apache conf is next:
<Location /svn>
SVNParentPath "E:\SVN"
DAV svn
SVNListParentPath on
AuthType Basic
AuthName "Subversion repositories"
Require valid-user
AuthUserFile svn-auth.txt
AuthzSVNAccessFile svn-acl.txt
</Location>
<Location /svn/dir/>
SVNParentPath "E:\SVN\Dir"
DAV svn
SVNListParentPath on
AuthType Basic
AuthName "Subversion repositories"
Require valid-user
AuthUserFile svn-auth.txt
AuthzSVNAccessFile svn-acl.txt
</Location>
<Location /svn/dir2/>
SVNParentPath "E:\SVN\Dir2"
DAV svn
SVNListParentPath on
AuthType Basic
AuthName "Subversion repositories"
Require valid-user
AuthUserFile svn-auth.txt
AuthzSVNAccessFile svn-acl.txt
</Location>