LNMP安裝後子域名訪問工程報錯502 Bad Gateway
阿新 • • 發佈:2018-07-26
sock index nmp php 但是 -c uri lnmp 問題
LNMP安裝好nginx、mysql、php後,放好代碼,搭建完數據庫,使用
IP/工程名
可以正常訪問,但是給這個工程配置了子域名,用子域名訪問就直接報錯
502 Bad Gateway
解決這個問題,進入到PHP安裝目錄,比如/usr/local/php/conf,編輯文件php-fpm.conf,將
[www]
listen = /tmp/php-cgi.sock
修改為:
[www] listen = 127.0.0.1:9000
其中,這個修改的端口9000,可以從nginx的配置中獲取,查看nginx的目錄,比如/usr/local/nginx/conf/vhost,找到配置這個工程子域名的文件,查看
location ~ [^/]\.php(/|$) { # comment try_files $uri=404; to enable pathinfo try_files $uri =404; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; #include pathinfo.conf; }
OK。保存重啟即可。
LNMP安裝後子域名訪問工程報錯502 Bad Gateway