cyr11 发表于 2014-8-12 11:01:16

php 502 Bad Gateway 这个错误在那里可以修改

php 502 Bad Gateway 这个错误在那里可以修改
我想提示如 请重试 这样提示 而不是显示 502 Bad Gateway

licess 发表于 2014-8-12 13:37:05

error_page 502 /500.html;

Evilleo 发表于 2014-8-12 14:36:09

回复 1# 的帖子

可以尝试将unix套接字改成tcp/ip的,修改/usr/local/php/etc/php-fpm.conf 里设置<value name=“listen_address”>/tmp/php-cgi.sock</value> 改成<value name=“listen_address”>127.0.0.1:9000</value> ,同时/usr/local/nginx/conf/nginx.conf 及其/usr/local/nginx/conf/vhost/ 下面的虚拟主机配置里的fastcgi_passunix:/tmp/php-cgi.sock; 替换为fastcgi_pass127.0.0.1:9000;之后重启试试
之前遇到过这样的问题 这样修改之后就没再遇到过502错误

cyr11 发表于 2014-8-12 15:57:54

非常感谢各位!在研究怎么写成二个php-fpm.conf
页: [1]
查看完整版本: php 502 Bad Gateway 这个错误在那里可以修改