zkt26/frontend/nginx.conf
2026-04-01 09:38:54 +02:00

15 lines
266 B
Nginx Configuration File

server {
listen 80;
location /api/ {
proxy_pass http://backend:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location / {
root /usr/share/nginx/html;
index index.html;
}
}