My envionment
Windows server 2003 sp2 (ntranet webserver)
Apache 2.2
Windows server 2003 (Active Directory)
I am trying to protect directories on my intranet webserver and authenticate my users against an active directory database.
I have read the apache examples and tried to use them with no success. I visted Apaches documentation pages regarding LDAPS and used some of their examples only to fail again. Here is a the directive that i am using
in httpd.conf file i am using a certificate that i got using the(active directory) certificate server, i exported the user certificate and put in a folder called ldap on the c: drive and i reference it below.
LDAPTrustedGlobalCert CA_DER c:\ldap\ldap.cer
<Directory D:\web\vipintranet\data\Departments\LLON-Departments\Information-Services\Staff-Corner>
SetHandler ldap-status
Order deny,allow
Deny from all
AuthLDAPURL ldaps://192.168.142.140:636/o=LLON?uid?sub?(objectClass=*)
AuthzLDAPAuthoritative off
Require group cn=WEB_IT-SECURE_AREA,ou=WEB_AUTHENTICATION,ou=APPS,o=LLON
</Directory>
Windows server 2003 sp2 (ntranet webserver)
Apache 2.2
Windows server 2003 (Active Directory)
I am trying to protect directories on my intranet webserver and authenticate my users against an active directory database.
I have read the apache examples and tried to use them with no success. I visted Apaches documentation pages regarding LDAPS and used some of their examples only to fail again. Here is a the directive that i am using
in httpd.conf file i am using a certificate that i got using the(active directory) certificate server, i exported the user certificate and put in a folder called ldap on the c: drive and i reference it below.
LDAPTrustedGlobalCert CA_DER c:\ldap\ldap.cer
<Directory D:\web\vipintranet\data\Departments\LLON-Departments\Information-Services\Staff-Corner>
SetHandler ldap-status
Order deny,allow
Deny from all
AuthLDAPURL ldaps://192.168.142.140:636/o=LLON?uid?sub?(objectClass=*)
AuthzLDAPAuthoritative off
Require group cn=WEB_IT-SECURE_AREA,ou=WEB_AUTHENTICATION,ou=APPS,o=LLON
</Directory>