码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx用户认证配置

时间:2019-09-17 12:33:45      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:hls   oiv   路径   bmc   vlc   配置文件   usr   chmod   yum   

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用户认证配置

标签:hls   oiv   路径   bmc   vlc   配置文件   usr   chmod   yum   

原文地址:https://www.cnblogs.com/sansi5/p/11532761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!