1.安装httpd
yum install -y httpd
2.创建账号密码
htpasswd -c /usr/local/nginx/conf/htpasswd 用户名
3.可以利用一些命令查看创建好的账号和密码,密码是加密保存的,所以看到的也是加密的密码
cat /usr/local/nginx/conf/htpasswd
4.打开网站配置文件
vi /usr/local/nginx/conf/vhosts/网站域名.conf
5.在配置文件里面加上以下代码
location / {
auth_basic " Please enter your username for access";
auth_basic_user_file /usr/local/nginx/conf/htpasswd;
}
6.保存后重启Nginx
nginx -s reload
7.打开网站弹出登录框即设置验证成功