I have read many tutorials and i tried configuring (Integrate apache http server with active directory through ldap protocol).But authentication dialog box doesnt appears.In error log,there is no errors
in redhat 6 i just configured in httpd.conf file alone i have deployed the application war file named sss.war in jboss So i can access it via {http://ipaddress:8080/sss } i have setup with proxypass and reverse proxy pass in httpserver(httpd.conf) Now it is accessible via ( [URL:http://ipaddress/sss][2]) In web browser,when typed {http://ipaddress/sss..} it is not asking for authentication(dialog box doesnt appears) can somebody help me out in configuring ldap and review my http.conf file and comment on this.
LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
these two modules are uncommented(explanation for those two modules plz if possible) ServerAdmin hariprasadh.balasubramanian@xyz.com DocumentRoot /var/www/html ServerName (hostname given correctly) ErrorLog /var/log/error.log AuthBasicProvider ldap AuthType Basic AuthzLDAPAuthoritative off AuthName "Enter ur AD username and password" AuthLDAPURL "ldap://xxx.com:389/OU=yyy,DC=zzz,DC=aaa?sAMAccountName?sub?(objectClass=)" AuthLDAPBindDN "emailid" AuthLDAPBindPassword password require valid-user
ProxyPass /sss http://ipaddr:8080/sss
ProxyPassReverse /sss http://ipaddr:8080/sss
CustomLog logs/dummy-host.example.com-access_log common
There is no errors in error log:
[Fri Feb 01 15:20:27 2013] [error] File does not exist: /var/www/html/favicon.ico [Fri Feb 01 15:21:29 2013] [error] File does not exist: /var/www/html/favicon.ico
But next time onwards i havent got any error And one more thing iam trying for http only not for https. Please help me out asap.
Is any other thing am i missing other than httpd.conf? If so please explain some step by step procedure....