apache - How to configure SVN to show a collection of Repositories -
i want show collection of repositories using mod_authz_svn. when access it, 403 error (forbidden).
i found out works fine, when not specifying authzsvnaccessfile /etc/apache2/dav_svn.authz
, seeing repos, permissions (of course) don't work anymore.
is possible show collection of repos while using authzsvnaccessfile
?
this dav_svn.authz:
[groups] admin = me users = you,others [/] * = r @admin = rw [repo:/subfolder] @users = rw
this worked me.
on ubuntu 14.04 server, added following line /etc/apache2/mods-enabled/dav_svn.conf
svnlistparentpath on
be sure restart apache:
$ sudo /etc/init.d/apache2 restart
Comments
Post a Comment