1 首先需要安装apache,可以使用yum install 安装
yum -y install httpd
2 生成密码文件,创建用户
htpasswd -c /usr/local/nginx/conf/htpasswd test // 添加test用户,第一次添加时需要加-c参数,第二次添加时不需要-c参数
3 在nginx的配置文件中添加
location / {
root /data/www/wwwroot/count;
auth_basic "Auth";
auth_basic_user_file /usr/local/nginx/conf/htpasswd;
}
如果是采用虚拟主机的方式发布,将第三部分的信息添加到虚拟主机配置文件中(路径不一样的要修改),重启nginx后就生效了
转载于:https://blog.51cto.com/881955/1655609