我将nginx更新到1.4.7,将php更新到5.5.12,之后我得到了502错误。在我更新之前,一切都很好。
nginx-error.log
2014/05/03 13:27:41 [crit] 4202#0: *1 connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream, client: xx.xxx.xx.xx, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "xx.xx.xx.xx"
nginx.conf
user www www;
worker_processes 1;
location / {
root /usr/home/user/public_html;
index index.php index.html index.htm;
}
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/home/user/public_html$fastcgi_script_name;
include fastcgi_params;
}
除了在你的php配置中扩大权限,你可以改变你的nginx配置中指定的用户。
在上面的nginx.conf摘录的第一行,用户和组分别被指定为www和www。
user www www;
同时,你的php配置可能会指定一个用户和一组www-data:
listen.owner = www-data
listen.group = www-data
你可以将nginx.conf中的这一行更改为以下任何一行:
user www-data www;
user www-data www-data; # or any group, really, since you have the user matching
user www www-data; # requires that your php listen.mode gives rw access to the group
下面的简单修复对我有用,绕过了套接字可能的权限问题。
在你的nginx配置中,设置fastcgi_pass为:
fastcgi_pass 127.0.0.1:9000;
而不是
fastcgi_pass /var/run/php5-fpm.sock;
这必须匹配/etc/php5/fpm/pool.d/www.conf中的listen =参数,所以也将其设置为:
listen = 127.0.0.1:9000;
然后重新启动php5-fpm和nginx
service php5-fpm restart
And
service nginx restart
更多信息,请参见:https://wildlyinaccurate.com/solving-502-bad-gateway-with-nginx-php-fpm/
除了在你的php配置中扩大权限,你可以改变你的nginx配置中指定的用户。
在上面的nginx.conf摘录的第一行,用户和组分别被指定为www和www。
user www www;
同时,你的php配置可能会指定一个用户和一组www-data:
listen.owner = www-data
listen.group = www-data
你可以将nginx.conf中的这一行更改为以下任何一行:
user www-data www;
user www-data www-data; # or any group, really, since you have the user matching
user www www-data; # requires that your php listen.mode gives rw access to the group