502 Bad Gateway - Nginx

时间:2015-09-09 06:37:50

标签: apache nginx

我收到了:

14201#0: *16 connect() failed (111: Connection refused) while connecting to
upstream, client: 22.222.222.222, server: myserver.com, request: "GET 
/favicon.ico HTTP/1.1", upstream: "https://70.88.100.212:7081/favicon.ico", 
host: "myserver.com", referrer: "https://myserver.com/" 

来自我server的子域。现在我已经查看并知道它不是fpm的问题,因为当我在单独的子域gitlab中安装git.myserver.com时发生了这种情况。我的plesk controller表示他们是configuration issue并建议运行configure script而不是破坏我的子域名。

这是事情 - git.myserver.com仍然可以访问,它实际上只是打破了myserver.com。我不确定通过我的/etc/nginx/conf.d/*.conf看到了什么,一切看起来都是正确的。

该文件的布局是:

include /etc/nginx/plesk.conf.d/server.conf; include /etc/nginx/plesk.conf.d/vhosts/*.conf; include /etc/nginx/plesk.conf.d/forwarding/*.conf; include /etc/nginx/plesk.conf.d/webmail.conf;

有什么建议吗?

更新

70.88.100.212是主要服务器 - 我在其中指定了多个domains并构建了webspaces。那些仍然可以访问。

1 个答案:

答案 0 :(得分:1)

检查您的端口7081是否正在侦听ip 70.88.100.212。

尝试此命令:

netstat -ntlpu

在你的Nginx conf中它应该是:

location / {         proxy_pass http://70.88.100.212:7081/;