Files
unluckiest/nginx/unluckiest_80
2024-10-23 23:01:11 +02:00

27 lines
719 B
Plaintext

server {
listen 80;
server_name unluckiest.naaturel.be www.unluckiest.naaturel.be;
location / {
proxy_pass http://webapp:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /api/ {
if ($request_uri ~ ^(.+)/$) {
return 301 $1;
}
proxy_pass http://api:5000/api/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}