Hello all I recently installed the apache svn and trying to enable the svnrepolist
here is the conf file for dav_Svn <Location /svn> DAV svn SVNParentPath /svn SVNAutoversioning On SVNListParentPath On AuthType Basic AuthName "Subversion Repository" AuthBasicProvider ldap AuthLDAPURL "ldap://xxxxxx AUTHLDAPBindDN "xxxxx" AuthLDAPBindPassword xxxx AuthzSVNAccessFile /etc/apache2/dav_svn.authz Allow from all Require valid-user </Location> I have 3 repos under /svn folder as test1 test2 and test3 under dav_svn.authz file I have [/] * = r [test1:/] * = myuser = rw [test2:/] otheruser = rw [test3:/] otheruser = rw so, when I browse to http://svn.mydomain/svn address I can only able to see the repo I allowed.. not the complete list Where I am doing it wrong? Regards