automated

This commit is contained in:
Tomáš Dvořák
2025-08-26 09:18:40 +02:00
parent a67731dec8
commit fcb9f2d60c
28 changed files with 1792 additions and 12504 deletions
+23
View File
@@ -0,0 +1,23 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Serve static assets
location / {
try_files $uri $uri/ /index.html;
}
# Proxy data API to backend
location /data/ {
proxy_pass http://backend:8080/data/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
add_header Access-Control-Allow-Origin *;
}
location /healthz {
proxy_pass http://backend:8080/healthz;
}
}