如何允许特定IP到Nginx中的URL(而不是目录!)

我试图拒绝访问我们在Nginx上运行的网站上的特定网址,但允许它来自特定的IP,我一直试图摆弄使用位置,但似乎只是试图找到一个正确的目录而不是URL.这就是我提出的,但只是给了404.location /specificurl { root /var/www/site1.com/current; allow 123.123.123

我试图拒绝访问我们在Nginx上运行的网站上的特定网址,但允许它来自特定的IP,我一直试图摆弄使用位置,但似乎只是试图找到一个正确的目录而不是URL.

这就是我提出的,但只是给了404.

location /specificurl {
       root /var/www/site1.com/current;
       allow 123.123.123.123;
       deny all;
       }

最佳答案
您试图为所有IP返回404错误,但指定的?使用带有“= 404”参数的指令“error_page”.有点 …

location /specificurl {
   root /var/www/site1.com/current;
   allow 123.123.123.123;
   deny all;

   error_page 403 =404 /404.html;

}

http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page

Furthermore,it is possible to change the response code to another,
for example:

06001

或类似……

location /specificurl {
   root /var/www/site1.com/current;
   allow 123.123.123.123;
   deny all;

   error_page 403 = @goaway;

}

location @goaway {
    return 444;
}

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部