Fedora 29
Sponsored Link

Apache httpd : Basic Auth + PAM2018/11/10

 
Limit accesses on specific web pages and use OS users for authentication with SSL connection.
[1]
[2] Configure httpd.
[root@www ~]#
dnf -y install mod_authnz_external pwauth
[root@www ~]#
vi /etc/httpd/conf.d/authnz_external.conf
# add to the end : require pam-auth under the /var/www/html/auth-pam

<Directory /var/www/html/auth-pam>
    SSLRequireSSL
    AuthType Basic
    AuthName "PAM Authentication"
    AuthBasicProvider external
    AuthExternal pwauth
    require valid-user
</Directory>

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

[root@www ~]#
vi /var/www/html/auth-pam/index.html
# create a test page

<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Test Page for PAM Auth
</div>
</body>
</html>

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