CentOS 7
Sponsored Link

Apache httpd : Basic Auth + LDAP2014/09/08

 
Limit accesses on specific web pages and use LDAP users for authentication with SSL connection.
[1]
[2]
[3] For example, set Basic Auth under the [/var/www/html/auth-ldap] directory.
[root@www ~]#
yum -y install mod_ldap
[root@www ~]#
vi /etc/httpd/conf.d/auth_ldap.conf
# add follows to the end

<Directory /var/www/html/auth-ldap>
    SSLRequireSSL
    AuthName "LDAP Authentication"
    AuthType Basic
    AuthBasicProvider ldap
    AuthLDAPURL ldap://dlp.srv.world/dc=srv,dc=world?uid?sub?(objectClass=*)
    Require ldap-filter objectClass=posixAccount
</Directory>

# create a test page

[root@www ~]#
mkdir /var/www/html/auth-ldap

[root@www ~]#
vi /var/www/html/auth-ldap/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Test Page for LDAP Auth
</div>
</body>
</html>

[root@www ~]#
systemctl restart httpd
[4] Access to the test page with a Web browser on Client and authenticate with a user which is on LDAP.
[5] Just accessed.
Matched Content