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