首頁 >運維 >Nginx >linux nginx不解析php如何解決

linux nginx不解析php如何解決

WBOY
WBOY轉載
2023-05-12 22:19:11942瀏覽

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中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除