nginx开启认证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx开启认证相关的知识,希望对你有一定的参考价值。
1.安装httpd
yum -y install httpd
2.查看帮助命令
htpasswd --help
3.创建用户与密码
语法:htpasswd -bcm 目录 用户名 密码 示例:htpasswd -bcm /var/user dy 123456
4.查看生成的用户名密码
cat /var/user
5.修改nginx.conf配置文件,在location中添加如下配置
#当auth_basic为off 表示关闭 auth_basic "hello"; auth_basic_user_file /var/user;
6.重启nginx服务
service nginx reload
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1944141
以上是关于nginx开启认证的主要内容,如果未能解决你的问题,请参考以下文章
nginx启用status页面并实现nginx的登录账户认证
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段