这个比较简单了!!使用apache2 的httpd-tools工具写一个http password ,然后加载一下配置就好了。
yum install httpd-tools -y
mkdir -p /etc/apache2
#初次创建需要-c
htpasswd -c /etc/apache2/.htpasswd centosvmuser01
输入两次密码
htpasswd /etc/apache2/.htpasswd centosvmuser02
输入两次密码
htpasswd /etc/apache2/.htpasswd centosvmuser03
输入两次密码
使用例子:
location /api {
auth_basic “Administrator’s Area”;
auth_basic_user_file /etc/apache2/.htpasswd;
}
HTTP Basic Authentication.png
网友评论