当前位置:   article > 正文

nginx配置auth_basic认证_nginx 增加验证

nginx 增加验证

nginx配置auth_basic认证

windows

1、下载 httpd 下载地址: https://www.apachelounge.com/download/
2、生成密码:打开cmd,进入到 Apache24\bin后 html htpasswd.exe -c G:\nginx\nginx-1.14.2\conf\.htpasswd user
其中: G:\nginx\nginx-1.14.2\conf为你自己的nginx位置
user为用户名, 可以根据自己的情况定义
输入完成后打回车后输入密码, 再次输入密码即可;
3、找到nginx.conf文件,在需要做安全认证的地方添加

	auth_basic "Restricted Area";
	auth_basic_user_file G:/nginx/nginx-1.14.2/conf/.htpasswd;
  • 1
  • 2

在这里插入图片描述
配置完成后重启nginx

linux

yum install httpd-tools -y
  • 1

安装完成后

htpasswd -c /path/to/password-file username
  • 1

配置nginx

        location / {
            root   html;
            index  index.html index.htm;
			# 开启功能模块,关闭为off
			auth_basic on;
			# 指定密码配置文件
			auth_basic_user_file home/web/auth/auth_basic_user_file;
			# 验证通过后 跳转的相关路径
			proxy_pass   http://127.0.0.1:8080;
        }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/732463
推荐阅读
相关标签
  

闽ICP备14008679号