You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Oguzhan Kayhan <og...@kayhan.name.tr> on 2022/10/06 07:22:29 UTC

svnrepolist problem?

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