nginx怎么设置指定目录ip访问限制

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx怎么设置指定目录ip访问限制相关的知识,希望对你有一定的参考价值。

nginx中针对目录进行IP限制 ,这里以phpmyadmin目录只能让内网IP访问,而外网不能访问的配置方法。

nginx phpmyadmin 针对内网ip用户开放、外网ip用户关闭(在前面的配置中,location ~ ^/目录/使用正则, 优先级高于location /的配置,所以nginx无法对首页进行解析)

代码如下:

server 
  listen       80;
  server_name example.com;
  access_log logs/access.log main;
  location / 
      root   html;
      index index.php index.html index.htm;
  
location ~ ^/phpmyadmin/ 
      allow 192.168.1.0/24;
      deny all;
      location ~ .*.(php|php5)?$ 
          root /var/mailapp/nginx/html;
          fastcgi_pass   127.0.0.1:9000;
          fastcgi_index index.php;
          include        fastcgi_params;
      
  
location ~ .*.(php|php5)?$ 
      root /opt/nginx/html;
      fastcgi_pass   127.0.0.1:9000;
      fastcgi_index index.php;
      include        fastcgi_params;
   
参考技术A

类似下面,只有192.168.0.11才能访问abc目录


location /abc 
    allow 192.168.0.11;
   deny all;

本回答被提问者和网友采纳
参考技术B nginx白名单或者rewrite重定向限制
是IP无法访问该目录还是什么其中一个IP

以上是关于nginx怎么设置指定目录ip访问限制的主要内容,如果未能解决你的问题,请参考以下文章

nginx设置不能直接访问文件夹

linux iptables 要设置 某个目录 只允许指定IP 访问怎么弄呢。

nginx 限制目录访问为403,允许其它访问ip访问怎么变成404

nginx中设置限制指定用户或IP组访问权限

怎么设置局域网里的某些IP,让他们访问特定网络

nginx怎么配置IP和域名都能访问