咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

nginx如何针对目录进行IP限制

2016-08-18 09:03:34 7902次

Nginx phpmyadmin 针对内网ip用户开放、外网ip用户关闭

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;
   }
}


首页
最新活动
个人中心