linux nginx不解析php如何解决

WBOY
WBOY 转载
2023-05-12 22:19:11 490浏览

linux nginx不解析php的解决办法:1、查询9000端口是否出于侦听状态;2、查看“php-fpm.conf”文件;3、修改nginx配置为“location ~ \.php$ {fastcgi_pass unix:/dev/shm/php-cgi.sock; #127.0.0.1:9000 fastcgi_index index...”即可。

nginx 不解析php文件 502的解决办法:

安装的nginx默认侦听的是9000端口

查询9000端口是否出于侦听状态

netstat -antp | grep :9000

linux nginx不解析php如何解决

查询之后发现没有查到,查看php-fpm.conf文件

cat /usr/local/php/etc/php-fpm.conf

linux nginx不解析php如何解决

修改nginx配置

location ~ \.php$ {
    fastcgi_pass   unix:/dev/shm/php-cgi.sock;    #127.0.0.1:9000
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
    include        fastcgi_params;
}

Linux有哪些版本

Linux的版本有:Deepin、UbuntuKylin、Manjaro、LinuxMint、Ubuntu等版本。其中Deepin是国内发展最好的Linux发行版之一;UbuntuKylin是基于Ubuntu的衍生发行版;Manjaro是基于Arch的Linux发行版;LinuxMint默认的Cinnamon桌面类似Windows XP简单易用;Ubuntu则是以桌面应用为主的Linux操作系统。

以上就是linux nginx不解析php如何解决的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:亿速云,如有侵犯,请联系admin@php.cn删除