红联Linux门户
Linux帮助

nginx无法解析php,(110: Connection timed out)

发布时间:2016-10-22 11:00:16来源:linux网站作者:z8853797
这里的解析不是指打开.PHP 出现下载等情况。
 
这是我的nginx 关于php 的设置:
location ~ \.php$ {  
root /var/www;  
fastcgi_pass   127.0.0.1:9000;  
fastcgi_index  index.php;  
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;  
include        fastcgi_params;  
}  
 
而是报了下面的错误信息。
2016/10/22 10:34:49 [error] 8234#0: *32 connect() failed (110: Connection timed out) while connecting to upstream, client: 182.138.150.85, server:     wx.iisun.NET, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000",
 
之前将服务器环境搭建好了,测试完成后面就没管他了。这次需要将这台服务器作为微信公众号服务器。于是就上来配置。突然发现 nginx 无法解析php文件。
 
首先确认php-fpm 已经打开了。
在确认user group是一致的。
折腾来一会发现是防火墙的原因。没有将9000 端口写进白名单。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25279.html