2024-03-29 20:08:34 -04:00
|
|
|
upstream frontend {
|
|
|
|
|
server frontend:5173;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
upstream backend {
|
|
|
|
|
server backend:3000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
|
|
|
|
|
location /api {
|
|
|
|
|
rewrite /backend/(.*) /$1 break;
|
|
|
|
|
proxy_pass http://backend;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-05 16:40:40 -04:00
|
|
|
location /socket.io {
|
|
|
|
|
rewrite /backend/(.*) /$1 break;
|
|
|
|
|
proxy_pass http://backend;
|
2024-04-05 17:54:55 -04:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_hide_header 'Access-Control-Allow-Origin';
|
2024-04-05 16:40:40 -04:00
|
|
|
}
|
|
|
|
|
|
2024-03-29 20:08:34 -04:00
|
|
|
location / {
|
|
|
|
|
proxy_pass http://frontend;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-05 16:40:40 -04:00
|
|
|
}
|