Apache and Active Directory authentication
- by synapse
I'm having trouble with LDAP authentication in Apache 2.2. Here's the excerpt from httpd.conf
<Location /folder>
AuthType Basic
AuthName "Project"
AuthBasicProvider ldap
AuthLDAPBindDN "user@domain"
AuthLDAPBindPassword "my_password"
AuthLDAPURL "ldap://my_domain_controller/?samAccountName?sub?(objectClass=user)"
Require valid-user
</Location>
I keep getting "ldap_search_ext_s() for user failed" in error.log. I tried using my quoted DN as AuthLDAPBindDN but results were the same. What could be the problem?