允许 IP 地址绕过 Nginx auth_request 模块中的身份验证

允许 IP 地址绕过 Nginx auth_request 模块中的身份验证

我有如下配置。我想允许 IP 列表绕过身份验证。

server {
 listen 80;

 server_name test2.example.com;
 add_header Strict-Transport-Security max-age=2592000;

  location = /oauth2/auth {
      internal;
      proxy_pass http://oauth.example.com:4180;
  }

  location /oauth2/ {
      proxy_pass http://oauth.example.com:4180;
      proxy_set_header Host $host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Scheme $scheme;
  }

  location / {
    auth_request /oauth2/auth;
    error_page 401 = /oauth2/start?rd=$request_uri;
    proxy_pass https://test.example.com;
  }
}

我尝试在上面添加这个auth_request,但似乎没有帮助。我可以在日志中看到请求来自白名单 IP。

satisfy all;
allow 10.0.0.0/16;
allow 56.56.56.56/28;
deny all;

更新:修改satisfy allsatisfy any修复 IP 地址绕过问题。

相关内容