Files
gnommoeditor/nginx/nginx.prod.conf
T

25 lines
728 B
Plaintext
Raw Normal View History

2026-04-11 09:24:21 +02:00
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Proxy API calls to the backend container
location /api/ {
proxy_pass http://gnommoeditor-backend:3001;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
client_max_body_size 500m;
proxy_read_timeout 300s;
proxy_send_timeout 300s;
proxy_request_buffering off;
}
# SPA fallback — all unmatched routes serve index.html
location / {
try_files $uri $uri/ /index.html;
}
}