Côté apache2, la conf ressemble à ça :
<Location />
DAV svn
SVNParentPath /var/lib/svn
AuthzSVNAccessFile /etc/apache2/dav_svn.authz
AuthName "Subversion"
AuthLDAPURL "ldap://ldap/ou=ab,o=xyz,c=fr?uid"
AuthLDAPAuthoritative on
AuthLDAPGroupAttribute memberUid
AuthType Basic
Order Deny,Allow
Deny from all
Allow from 127.0.0.1/32
Allow from localhost
Allow from 192.168.1.0/24
Allow from ab.xyz.fr
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location />
Dans /var/lib/svn, se trouve actuellement un seul repository/projet (apf).
(…)