欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx无法访问php

程序员文章站 2022-03-13 21:43:23
...
nginx无法访问php

nginx配置中,关于php的配置有错会导致nginx无法访问php。

找不到访问php找不到文件,修改下面配置

nginx.conf:

nginx无法访问php

location ~ \.php$ {
        proxy_pass   http://127.0.0.1:80;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        #fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
        #fastcgi_param SCRIPT_FILENAME /$document_root$fastcgi_script_name;
        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;
        include        fastcgi_params;
    }

以上就是nginx无法访问php的详细内容,更多请关注其它相关文章!

相关标签: nginx php