在 Docker 和 Nginx 中使用反向代理时出现 502 Bad Gateway

502 Bad Gateway when using reverse proxy with Docker and Nginx

我在 Whosebug 上搜索了我的问题,但我似乎总是用我的 Nginx Docker 配置点击 502 Bad Gateway。我正在尝试使用我的域 mydomain.com/pgadmin 而不是 mydomain.com:8060 访问 pgadmin4,其中 8060 是它的 docker 容器公开的端口。我的 docker-compose.yml 文件如下所示:

version: '3.5'

services:
  reverse-proxy:
    image: nginx:1.19.6
    restart: always
    ports:
      - "80:80"
      - "443:443"
        
  postgres:
    image: postgres:12
    ports:
      - "5432:5432"
        
  pgadmin:
    image: dpage/pgadmin4
    depends_on:
      - postgres
    ports:
      - "8060:80"
      
networks:
  default:
    external:
      name: defaultnetwork

我的 nginx 容器的 default.conf 文件如下所示:

upstream pgadmin {
    server 127.0.0.1:8060;
}

server {
    listen       80;
    listen  [::]:80;
    server_name  mydomain.com;
    
    root   /usr/share/nginx/html;
    index  index.html index.htm;
    
    location /pgadmin {
        proxy_pass http://pgadmin;
    } 
}

使用此配置,我不断收到 502 Bad Gateway 错误。有人可以指出我哪里出错了。非常感谢。

谢谢。

[编辑] 这是来自 docker 日志:

2021/02/03 08:07:42 [error] 23#23: *2 connect() failed (111: Connection refused) while connecting to upstream, client: ***.***.***.***, server: mydomain.com, request: "GET /pgadmin HTTP/1.1", upstream: "http://127.0.0.1:8082/pgadmin", host: "mydomain.com"

502问题出自这里的环回IP:

upstream pgadmin { server 127.0.0.1:8060; }

NGINX 容器的

127.0.0.1localhost 是 NGINX 容器本身。您应该改用服务名称:

upstream pgadmin {
    server pgadmin:8060;
}

服务名称来自 docker-compose.yml:

services:
  pgadmin: # <- this
    image: dpage/pgadmin4

如果您在这些更改后遇到 404,这是因为您必须更改应用程序的基本路径。尝试使用此配置:

    location /pgadmin/ {
        proxy_set_header X-Script-Name /pgadmin;
        proxy_set_header Host $host;
        proxy_pass http://pgadmin;
        proxy_redirect off;
    }

由于您的容器在同一个网络中工作,您应该从 Nginx 容器通过第 80 端口访问 Pgadmin 容器。

您应该在您的 Nginx 配置中将此行 server 127.0.0.1:8060 替换为 server pgadmin:80