安装httpd
# yum -y install httpd
$ which htpasswd
/bin/htpasswd
创建认证数据文件,输入两次密码。
$ htpasswd -c /home/testerzhang/db/secret.db testerzhang
New password:
Re-type new password:
Adding password for user testerzhang
配置nginx用户名密码认证
location / {
auth_basic "secret";
auth_basic_user_file /home/testerzhang/db/secret.db;
root /home/testerzhang/page;
index index.html index.htm;
}
加载nginx配置,或者重启服务,就可以生效。
网友评论