zkt25/sk1/frontend/default.conf
2025-04-28 23:20:13 +02:00

18 lines
252 B
Plaintext

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ =404;
}
location /history {
proxy_pass http://backend:5000;
}
location /save {
proxy_pass http://backend:5000;
}
}