initial commit

This commit is contained in:
arrelin
2026-03-06 15:31:24 +03:00
commit 5051b8e9de
38 changed files with 6868 additions and 0 deletions

14
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass http://backend:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}