nginx限制请求之四:目录进行IP限制
生活随笔
收集整理的這篇文章主要介紹了
nginx限制请求之四:目录进行IP限制
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
相關文章:
《高可用服務設計之二:Rate limiting 限流與降級》
《nginx限制請求之一:(ngx_http_limit_conn_module)模塊》
《nginx限制請求之二:(ngx_http_limit_req_module)模塊》
《nginx限制請求之三:Nginx+Lua+Redis 對請求進行限制》
《nginx限制請求之四:目錄進行IP限制》
?
一個不錯的nginx中針對目錄進行IP限制 ,這里我以phpmyadmin目錄只能讓內(nèi)網(wǎng)IP訪問,而外網(wǎng)不能訪問的配置方法,有需要的同學可參考。
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;}}nginx?phpmyadmin?針對內(nèi)網(wǎng)ip用戶開放、外網(wǎng)ip用戶關閉(在前面的配置中,location ~ ^/目錄/使用正則, 優(yōu)先級高于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 ~ ^/download/ {allow 192.168.1.0/24;deny all;index index.php index.do index.html index.htm;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;astcgi_pass 127.0.0.1:9000;fastcgi_index index.php;include fastcgi_params;}限制指定的連接只允許 某個指定的IP 能行訪問
總結
以上是生活随笔為你收集整理的nginx限制请求之四:目录进行IP限制的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用jq.lazyload.js,解决设
- 下一篇: Tomcat 8熵池阻塞变慢详解