This is a discussion on LDAP & Basic Authentication within the Apache Web Server forums, part of the Web Server and Related Forums category; Hello everybody Is it possible that for a repository two authentications methods will be used. In my example ldap and ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello everybody
Is it possible that for a repository two authentications methods will be used. In my example ldap and the basic authentications of apache. In my configuration AuthUserFile is used, but only LDAP is used. Thanks for help My current configuration is as follows: <Location /xyz> DAV svn # Will handle any repositories SVNParentPath D:/repositories/xyz # our access policy AuthzSVNAccessFile D:/subversion/config/svn-access-file AuthUserFile D:/subversion/config/svn-auth-file Options Indexes FollowSymlinks AuthType Basic AuthLDAPAuthoritative off AuthLDAPEnabled on AuthLDAPGroupAttributeIsDN on AuthLDAPGroupAttribute member AuthName "xyz repositories" AuthLDAPUrl ldap://195.141.221.56:389/ou=sciman,dc=sciman,dc=home?sAMaccountName?sub?(ob jectClass=*) AuthLDAPBindDN "sciman\user" AuthLDAPBindPassword password AuthLDAPAuthoritative on # only authenticated users Require valid-user </Location> |
|
|||
|
I got it.
My current configuration: <Location /xyz> DAV svn # Will handle any repositories SVNParentPath D:/repositories/xyz Options Indexes FollowSymlinks AuthType Basic AuthLDAPAuthoritative off AuthLDAPEnabled on AuthName "xyz repositories" AuthLDAPUrl ldap://x.x.x.x:389/ou=sciman,dc=sciman,dc=home?sAMaccountName?sub?(ob jectClass=*) AuthLDAPBindDN "sciman\user" AuthLDAPBindPassword password AuthUserFile D:/subversion/config/svn-auth-file # only authenticated users Require valid-user </Location> |