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

Nginx指定IP无须通过认证

时间:2020-02-18 20:28:09      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ddl   table   convert   space   拒绝   bsp   nbsp   user   地址   

需求: 指定IP直接访问,否则增加二次认证

server {

     listen 0.0.0.0:80;

     server_name 

     location ~ / {

     satisfy any;

          allow 172.18.1.1/24;

          deny all;

          auth_basic "login";

          auth_basic_user_file /etc/nginx/passwd;

          root /var/www/html;

          index index.html;

}

 

 

注意里面的

satisfy any|all 部分地址Basic认证的方式

 

allow

Deny

satisfy any

不认证

Basic认证

satisfy all

Basic认证

拒绝连接

通过satisfy any来实现IP白名单

Nginx指定IP无须通过认证

标签:ddl   table   convert   space   拒绝   bsp   nbsp   user   地址   

原文地址:https://www.cnblogs.com/ttyypjt/p/12327497.html

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