Nginx 配置:504 网关超时错误

Nginx 配置:504 网关超时错误

我们使用 Nginx 作为负载均衡器。Nginx 的 IP 地址为:10.110.0.200,主机地址为 10.110.3.20|10.110.3.21

这是配置文件:

upstream test1 {   server 10.110.3.20:xxxx; }

server {

  listen               10.110.0.200:80;             server_name test1.xyx.com;

  location /  {
    proxy_set_header Host $host;
    proxy_pass         http://test1;

  }  }

我们收到一条错误消息

*798 上游超时(110:连接超时)连接到上游时,客户端:10.100.88.210

有什么线索吗?

当我们进行 curl 时

卷曲-vhttp://10.110.3.20:xxxx * 无法连接到主机 * 关闭连接 #0 curl: (7) 无法连接到主机

答案1

鉴于您无法使用 curl 直接连接到后端,问题不是 nginx 配置问题,而是一些较低级别的问题。我认为是防火墙配置错误——在这些情况下,这是个普遍问题。

相关内容