Ramesh wrote:
Hi Ramesh, You need to configure Apache to authenticate against your AD and this has nothing to do with an .htaccess file. Yes, you need mod_authnz_ldap and also mod_ldap. There are quite a few HOWTO type documents for doing this on the web and describe this process fairly well. What I'd like to do is authenticate over an encrypted TCP/IP session like SSL. I haven't managed to get that working yet. Here the relative section of my Apache vhost conf for non-SSL auth with AD: ... <Location /projects> ... Order deny,allow Deny from all Allow from all AuthType Basic AuthName "***" AuthBasicProvider "ldap" AuthLDAPURL "ldap://***:3268/DC=***,DC=***?sAMAccountName?sub?(objectClass=user)" AuthLDAPBindDN "***@***.***" AuthLDAPBindPassword "***" AuthzLDAPAuthoritative Off require valid-user </Location> ... |