用户认证
Posted ray-mmss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用户认证相关的知识,希望对你有一定的参考价值。
)修改配置文件
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf .. .. server { listen 80; server_name localhost; auth_basic "Input Password:"; //认证提示符 auth_basic_user_file "/usr/local/nginx/pass"; //认证密码文件 location / { root html; index index.html index.htm; } }
2)生成密码文件,创建用户及密码
[[email protected] ~]# yum -y install httpd-tools [[email protected] ~]# htpasswd -c /usr/local/nginx/pass tom //创建密码文件 New password: Re-type new password: Adding password for user tom [[email protected] ~]# htpasswd /usr/local/nginx/pass jerry //追加用户,不使用-c选项 New password: Re-type new password: Adding password for user jerry [[email protected] ~]# cat /usr/local/nginx/pass
3)重启Nginx服务
[[email protected] ~]# /usr/local/nginx/sbin/nginx -s reload //重新加载配置文件
以上是关于用户认证的主要内容,如果未能解决你的问题,请参考以下文章