tags:

views:

2500

answers:

1
+9  Q: 

svnserve with LDAP

I would like to know how to setup an SVN repository with LDAP authentication. I do not want to use Apache DAV though.

+6  A: 

There are two options:

  1. Run svnserve as a server, and authenticate using SASL. Configure SASL to authenticate against LDAP.
  2. Access the repository over ssh. Create ssh accounts for all users (perhaps automatically), and have these accounts authenticate against LDAP using PAM. Put all users into a single group, and make the repository files owned by that group.
Martin v. Löwis
Any clue on how to do option 1 on a Windows box?
jpierson