I am using an LDAP setup with a configuration similar to:
to / Etc. / apache2 / sites with support / MySite
<Location /svn>
DAV svn
SVNParentPath /var/svn
SVNListParentPath on
AuthBasicProvider ldap
AuthType Basic
AuthzLDAPAuthoritative Off
AuthzSVNAccessFile "/var/svn/conf/svnaccess.conf"
AuthName "My SVN"
AuthLDAPBindDN "....."
AuthLDAPBindPassword "....."
AuthLDAPURL "....."
Require valid-user
</Location>
/var/svn/conf/svnaccess.conf
[groups]
readonly = user1, user2
[/]
*=rw
@readonly=r
source
share