nginx访问白名单配置示例

发布时间:2020-08-02编辑:脚本学堂
分享一个nginx访问白名单的配置示例,在nginx服务器中设置白名单的方法,需要的朋友参考下。

nginx白名单设置:
 

复制代码 代码示例:
server { 
listen       80; 
server_name  192.168.1.1; 
index index.html index.htm index.php; 
root /data/www/app/webroot; 
charset utf-8; 
allow 192.168.1.2; 
allow 192.168.1.3; 
deny all; 
 
location ~ .*.php$ { 
include fcgi.conf; 
fastcgi_pass  127.0.0.1:10080; 
fastcgi_index index.php; 
expires off; 
access_log on; 
access_log  /data/logs/dpcq_php.log 
access buffer=32k; 


 

说明:
allow XXX 允许访问的ip;
deny XXX 拒绝访问的ip。