Apache httpd : Basic Authentication
[1] . Configure httpd.
For example, set Basic Authentication to the directory [/var/www/html/auth-basic].
[root@www ~]# vi /etc/httpd/conf.d/auth_basic.conf
# create new
<Directory /var/www/html/auth-basic>
SSLRequireSSL
AuthType Basic
AuthName "Basic Authentication"
AuthUserFile /etc/httpd/conf/.htpasswd
require valid-user
</Directory>
# add a user : create a new file with [-c]
[root@www ~]# htpasswd -c /etc/httpd/conf/.htpasswd cent
New password: # set password
Re-type new password:
Adding password for user cent
[root@www ~]# mkdir /var/www/html/auth-basic
[root@www ~]# systemctl restart httpd
# create a test page
[root@www ~]# vi /var/www/html/auth-basic/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Test Page for Basic Authentication
</div>
</body>
</html>
[2]. Access to the test page from any client computer with web browser. Then authentication is required as settings, answer with a user added
[3]. It's OK if authentication is successfully passed and test page is displayed normally.
Comments
Post a Comment