I can't see the 'Collection of Repositories" page after adding authentication and access rules to svn. 'guest' can navigate to mydomain.com/svn/public and admin can see both svn/public and svn/private, but none of the users can see /svn.
Is it possible to have 'guest' access mydomain.com/svn and only see a /public link?
Here's what I have setup...
subversion.conf:
<location /svn>
DAV svn
SVNParentPath /home/subversion
SVNListParentPath on
AuthzSVNAccessFile /etc/svn-access-file
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/svn-auth-file
Require valid-user
</Location>
svn-access-file:
[public:/] guest = r @admin = rw
[private:/] @admin = rw
[groups] admin = karl.r
Thanks.