Nginx用户认证配置

Posted sansi5

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx用户认证配置相关的知识,希望对你有一定的参考价值。

which htpasswd  #查看是否安装htpasswd
yum install httpd-tools  #安装htpasswd
 
#生成密码文件
htpasswd -cb /usr/local/tengine/conf/htpasswd 用户名 密码
例:
htpasswd -cb /usr/local/tengine/conf/htpasswd admin 123456
 
chmod 400 /usr/local/nginx/conf/htpasswd  #为了安全设置文件权限
 
 
配置文件:
location ~ /\.ht
deny all;
auth_basic "Please input password";    //提示词
auth_basic_user_file /usr/local/nginx/conf/htpasswd;   //密码文件的路径
 
配置完成后 reload nginx
 

以上是关于Nginx用户认证配置的主要内容,如果未能解决你的问题,请参考以下文章

nginx 配置用户认证

nginx访问控制基于用户认证https配置

Nginx用户认证配置

nginx rewrite标签配置以及用户认证配置

nginx服务做用户认证和基于域名的虚拟主机

nginx 使用密码认证