This is a simply configuration of apahce to use Ldap authentication, You need to enable ldap and ldap_auth modules.
<Location /ldaplocation > AuthType Basic AuthName "ldap auth" AuthBasicProvider ldap AuthLDAPBindDN "CN=ldapbind,O=test,C=it" AuthLDAPBindPassword mypasswordhere AuthLDAPURL "ldap://ldaphost:389/?uid?sub?(objectClass=inetOrgPerson)" Options Indexes SetOutputFilter DEFLATE <Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH PUT CHECKOUT MKCOL MOVE COPY DELETE LOCK UNLOCK MERGE> Require valid-user </Limit> </Location> |