概述
一、ngx_http_auth_basic_module模块简介
ngx_http_auth_basic_模块允许通过使用“http基本身份验证”协议验证用户名和密码来限制对资源的访问。访问也可以由地址、子请求的结果或JWT限制。通过地址和密码同时限制访问由satisfy指令控制。
二、模块配置示例
1、官网示例
location / {
auth_basic "closed site";
auth_basic_user_file conf/htpasswd;
}
2、指令说明
主要有两个指令,auth_basic和auth_basic_user_file,作用域范围是http, server, location, limit_except。
- auth_basic,启用使用“HTTP基本身份验证”协议验证用户名和密码。使用语法是auth_basic string | off,默认是off
- auth_basic_user_file file,指定保存用户名和密码的文件,没有默认值,文件内格式如下:
# comment
name1:password1
name2:password2:comment
name3:password3
3、配置示例
server {
listen 80; #listen、server_name这些正常配置
server_name www.test.com;
access_log /var/log/nginx/test.access.log;
location / {
auth_basic "welcome,please login"; #启用验证
auth_basic_user_file /etc/nginx/passwd.db; #指定验证文件
proxy_pass http://192.168.0.141:8080;
}
}
4、创建密码验证文件
首先安装htpassd命令
[root@s141 conf.d]# yum install -y httpd-tools
创建密码文件
[root@s141 conf.d]# htpasswd -c /etc/nginx/passwd.db zhangsan
New password:
Re-type new password:
Adding password for user zhangsan
添加用户
[root@s141 conf.d]# htpasswd /etc/nginx/passwd.db lisi
New password:
Re-type new password:
Adding password for user lisi
三、效果验证
1、启用验证前的页面如下
2、重新加载nginx配置
[root@s141 conf.d]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@s141 conf.d]# nginx -s reload
3、再次访问网站页面
4、输入用户名密码后页面
5、修改nginx配置文件为用户名密码和IP验证二选一
server {
listen 80; #listen、server_name这些正常配置
server_name www.test.com;
access_log /var/log/nginx/test.access.log;
location / {
satisfy any; #satisfy指令表示选择控制方式,any表示任意满足即可,all表示需要双重认证
allow 192.168.0.141/32;
deny all;
auth_basic "welcome,please login"; #启用验证
auth_basic_user_file /etc/nginx/passwd.db; #指定验证文件
proxy_pass http://192.168.0.141:8080;
}
}
6、IP白名单访问
7、非IP白名单需要验证才可以访问
最后
以上就是爱撒娇月饼为你收集整理的Nginx之验证模块ngx_http_auth_basic_module简介和使用一、ngx_http_auth_basic_module模块简介二、模块配置示例三、效果验证的全部内容,希望文章能够帮你解决Nginx之验证模块ngx_http_auth_basic_module简介和使用一、ngx_http_auth_basic_module模块简介二、模块配置示例三、效果验证所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复