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

nginx允许IP访问不生效问题【原创】

时间:2019-03-28 15:44:02      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:生效   class   后端服务   oca   ups   ESS   stream   配置   除了   

使用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

 

nginx允许IP访问不生效问题【原创】

标签:生效   class   后端服务   oca   ups   ESS   stream   配置   除了   

原文地址:https://www.cnblogs.com/paul8339/p/10615101.html

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