我使用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;
}
}
暂无答案!
目前还没有任何答案,快来回答吧!