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
}
}
location ~ /dir/.*.(php|php5)?$ { deny all } 禁止dir目录执行php文件权限 多个目录 location ~ /(dir|upload)/.*.(php|php5)?$ { deny all} 禁止dir和upload目录执行php文件权限 配置完成重启web服务。网站程序的上传目录通常是不需要PHP执行解释权限,通过限制目录的PHP执行权限可以提网站的安全性,减少被攻击的机率。
下面和大家一起分享下如何在Apache和Nginx禁止上传目录里PHP的执行权限。
在虚拟主机配置文件中增加php_flag engine off指令即可,配置如下
"/website/uploads"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all php_flag engine off
Nginx更简单,直接通过location条件匹配定位后进行权限禁止。
在server配置段中增加如下的配置
如果是单个目录
location ~* ^/uploads/.*\.(php|php5)$ { deny all}
如果是多个目录
location ~* ^/(attachments|uploads)/.*\.(php|php5)$ { deny all }
注意:这段配置文件一定要放在下面配置的前面才可以生效。
location ~ \.php$ { fastcgi_pass 127.0.0.1:9000fastcgi_index index.phpfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_nameinclude fastcgi_params}
最后给一个完整的配置示例
location ~ /mm/(data|uploads|templets)/*.(php)$ { deny all} location ~ .php$ { try_files $uri /404.htmlfastcgi_pass 127.0.0.1:9000fastcgi_index index.phpfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_nameinclude fastcgi_params}
配置完后记得重启Nginx生效。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)