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

Re: windows vs linux

From: Rainer Sokoll <R.Sokoll_at_intershop.de>
Date: 2007-09-13 09:05:46 CEST

On Wed, Sep 12, 2007 at 09:57:40PM -0700, Mark Reibert wrote:
> On Wed, 2007-09-12 at 09:47 +0200, Rainer Sokoll wrote:

> > LDAP.
> > apache 2.0.x: mod_auth_ldap.so
> > apache 2.2.x: mod_authnz_ldap.so
>
> And you can query a Windows DC? Cool. Where can one find the appropriate
> directory schema (or do you have an example)?

I prevent from using Windows whenever I can :-)
Asked my Windows collegue to help me.

For apache 2.0.x:
    AuthType Basic
    AuthLDAPEnabled on
    AuthLDAPAuthoritative on
    AuthLDAPBindDN "WINDOWSDOMAIN\\a_user"
    AuthLDAPBindPassword password_for_a_user
    AuthLDAPUrl ldap://10.0.87.27:389/DC=foo,DC=bar?sAMAccountName
    AuthName "Subversion Repository"
    require valid-user

For apache 2.2.x:
    AuthType Basic
    AuthBasicProvider ldap
    AuthName "Subversion Repository"
    AuthzLDAPAuthoritative off
    AuthLDAPBindDN "WINDOWSDOMAIN\\a_user"
    AuthLDAPBindPassword password_for_a_user
    AuthLDAPUrl ldap://10.0.87.27:389/DC=foo,DC=bar?sAMAccountName
    AuthUserFile /dev/null
    Require valid-user

As I use HTTPS only, I d not care about basic authentication. Next step
will be doing LDAPS instead of LDAP.

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Sep 13 09:02:51 2007

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.