标签:nginx
[root@yaho nginx]# curl localhost/i.php
<html>
<head><title>502 Bad Gateway</title></head>
<body bgcolor="white">
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx/1.4.4</center>
</body>
</html>
原因:php-fpm.conf 里的 listen =/tmp/php-abc.sock和 nginx.conf里 fastcgi_pass unix:/tmp/php-abc.sock;不一致,修改一致解决问题.
标签:nginx
原文地址:http://752030200.blog.51cto.com/8936921/1723396