[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Authenticating Against Active Directory

From: Christopher Elkins <chrise_at_esha.com>
Date: 2006-06-05 19:18:31 CEST

On Jun 5, 2006, at 9:46 AM, Ahmed Reza wrote:

> just wonderin if anyone else has tried authentication with
> Microsoft Active Directory on a seperate server. I tried using
> mod_ldap module but that didn't work, and after googling for hours
> realized that I'm not the only one who has tried it with no
> success. Any input would be deeply appreciated.

You didn't specify the protocol you're using (e.g., http, svn+ssh),
but I've integrated Apache with AD successfully for well over a year.
See my notes from the archive:
http://svn.haxx.se/users/archive-2005-02/1431.shtml

Here is my current config (for Apache 2.2):

<Location /repos>
     DAV svn
     SVNPath /export/svn/repos
     SVNAutoversioning on

     AuthBasicProvider ldap
     AuthType Basic
     AuthName "Subversion Repository"
     AuthLDAPURL ldap://example.local/OU=Users,DC=example,DC=local?
sAMAccountName?sub?(objectClass=user)
     AuthLDAPBindDN "EXAMPLE\ldapauth"
     AuthLDAPBindPassword ********

     <LimitExcept GET PROPFIND OPTIONS REPORT>
         Require ldap-group CN=Programmers,OU=Security
Groups,DC=example,DC=local
     </LimitExcept>
</Location>

-- 
Christopher Elkins
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Jun 5 19:20:24 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.