Initial commit

This commit is contained in:
2026-03-14 09:33:12 +01:00
commit 9fc4e15d3f
8 changed files with 712884 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend:8000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location / {
try_files $uri $uri/ /index.html;
}
}