nginx安全配置之白名单设置
程序员文章站
2022-04-13 09:13:38
...
针对php设置一个可执行的白名单,对于服务器安全来说也是一种必要而重要的设置。
其他的不多说,直接上配置明细吧:
其他的不多说,直接上配置明细吧:
server {
listen 5080;
server_name www.example.com;
root /home/htdocs/app/;
index index.php;
location / {
try_files $uri $uri/ /index.php?s=$uri;
}
location ~ .*\.php$ {
# 白名单配置,只允许/index.php访问
if ($fastcgi_script_name !~* "^/(index)\.php$") {
return 403;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
}
PS:发现发错地方了,请移动至话题讨论区去,感谢! AD:真正免费,域名+虚机+企业邮箱=0元
上一篇: HTML5的中的新元素
下一篇: html5之拖放的学习和完整实例代码