nginx Access to the script

大憨熊 提交于 2019-12-11 20:07:35

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

 

*153083913 FastCGI sent in stderr: "Access to the script '/var/www/html/ad-server/push/blog/flashlight.html' has been denied (see security.limit_extensions)" while reading response header from upstream, client: 113.111.184.237, server: winpridazenow.com, request: "GET /blog/flashlight.html?extension_id=LVE&subext_id=&country=DE HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "www.winprdaizenow.com"

 

正确配置



      location ~ /blog {
                root /var/www/html/ad-server/push;
                fastcgi_index flashlight.html;
                include        fastcgi_params;
        }

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!