nginx 504与docker和node超时

vawmfj5a  于 2021-10-10  发布在  Java
关注(0)|答案(0)|浏览(158)

我使用nginx获得504网关超时。我在docker compose的开发模式下运行这个。这是你的电话号码 config 对于nginx。
default.conf

upstream client {
    server 10.10.10.50:3000;
}

upstream api {
    server 10.10.10.50:5000;
}

server {
    listen 80;

    location / {
        proxy_pass http://client;
        proxy_http_version 1.1;
        proxy_set_header Connection "";
    }

    location /api {
        rewrite '/api/{.*}' /$1 break;
        proxy_pass http://api;
    }
}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题