系统相关
首页 > 系统相关> > nginx 访问控制之 认证

nginx 访问控制之 认证

作者:互联网

安装httpd

yum install -y httpd

使用htpasswd生产密码文件

htpasswd -c /usr/local/nginx/conf/htpasswd aming
# -c 表示创建文件, aming是用户名
# 当添加用户时,需要去掉 -c 参数
# 修改密码的方式和添加用户的方式相同

配置nginx用户认证

location  /admin/
  {
      auth_basic              "Auth";
      auth_basic_user_file   /usr/local/nginx/conf/htpasswd;
  }

 

标签:httpd,访问控制,认证,nginx,htpasswd,usr,conf,aming
来源: https://www.cnblogs.com/yyxianren/p/10837456.html