使用nginx的nginx_upstream_check模块来检测后端服务器的转态时,设置只允许某段IP访问,发现不生效,不在此网段的IP也可以访问。
原因为在允许IP访问最后一定要加deny all;表示除了上面allow的其他都禁止
配置如下:
location /status { check_status; access_log off; allow 10.2.72.26; deny all; }
最后要加deny all
原文地址:https://www.cnblogs.com/paul8339/p/10615101.html
时间: 2024-10-14 00:34:51