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

前端之家收集整理的这篇文章主要介绍了如何允许特定IP到Nginx中的URL(而不是目录!)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图拒绝访问我们在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;
}
原文链接:https://www.f2er.com/nginx/435425.html

猜你在找的Nginx相关文章