SVN avec authentification AD
Bonjour à tous,
Comme mentionné dans le titre j'essaye de monter un serveur SVN avec l'authentification Active Directory.
Mon serveur SVN fonctionne car testé avec users locaux.
Mon fichier dav_svn.conf:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
<Location /depot>
DAV svn
Require valid-user
SVNParentPath /mon/chemin
AuthType basic
AuthName "mon depot"
AuthzSVNAccessFile /mon/chemin/conf/access
AuthLDAPBindDN "CN=administrateur,OU=Users,DC=DOMAINE,DC=LOCAL"
AuthLDAPBindPassword mdp
AuthBasicProvider ldap
AuthLDAPURL ldap://ip/ou=users/dc=domaine/dc/local/sAMAccountName?sub?(objectClass=*)
AuthLDAPBindAuthoritative off
</Location> |
Lorsque j'accède a on url j'ai la fenetre d'authentification. Par contre quand j'entre mes identifiants je ne suis pas connecté.
Dans les log apache j'ai
Code:
[auth_basic:error] ... AH01618:user xxx not found: /depot/projet1
Avez vous une idée du problème ?
Merci d'avance