= SVN + LDAP #apt-get install subversion libapache2-svn #mkdir /var/svn #svnadmin create --fs-type fsfs /var/svn #chown -R www-data:513 /var/svn #ln -s /etc/apache2/mods-available/authnz_ldap.load /etc/apache2/mods-enabled/authnz_ldap.load #ln -s /etc/apache2/mods-available/ldap.load /etc/apache2/mods-enabled/ldap.load #vim /etc/apache2/mods-enabled/dav_svn.conf DAV svn SVNPath /var/svn AuthType Basic AuthName "LDAP Auth" AuthBasicProvider ldap AuthzLDAPAuthoritative off AuthLDAPURL ldap://test.com/ou=People,dc=test,dc=com?uid?sub?(objectclass=posixAccount) Require valid-user #svn checkout http://localhost/svn #svn import http://localhost/svn -m "init" #cd svn touch test.txt #svn add test.txt #svn commit -m "up test.txt"