nginx怎么设置指定目录ip访问限制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx怎么设置指定目录ip访问限制相关的知识,希望对你有一定的参考价值。
nginx中针对目录进行IP限制 ,这里以phpmyadmin目录只能让内网IP访问,而外网不能访问的配置方法。
nginx phpmyadmin 针对内网ip用户开放、外网ip用户关闭(在前面的配置中,location ~ ^/目录/使用正则, 优先级高于location /的配置,所以nginx无法对首页进行解析)
代码如下:
serverlisten 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目录
allow 192.168.0.11;
deny all;
本回答被提问者和网友采纳 参考技术B nginx白名单或者rewrite重定向限制
是IP无法访问该目录还是什么其中一个IP
以上是关于nginx怎么设置指定目录ip访问限制的主要内容,如果未能解决你的问题,请参考以下文章
linux iptables 要设置 某个目录 只允许指定IP 访问怎么弄呢。