LNMP安装后子域名访问工程报错502 Bad Gateway

Posted xianxh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LNMP安装后子域名访问工程报错502 Bad Gateway相关的知识,希望对你有一定的参考价值。

LNMP安装好nginxmysqlphp后,放好代码,搭建完数据库,使用

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的主要内容,如果未能解决你的问题,请参考以下文章

手机显示502bad,gateway

nginx 502 bad gateway

502 Bad Gateway

求救,为啥PHP 开启opcache后,访问502 Bad Gateway错误

phpstudy一键安装包 502 bad gateway nginx怎么解决

502 Bad Gateway 怎么解决?