surafino/installer/nginx.conf.template
2026-01-17 20:23:16 +01:00

14 lines
326 B
Plaintext

server {
listen 80;
server_name {{DOMAIN}};
location / {
proxy_pass http://127.0.0.1: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;
}
}