Update app and ignore local artifacts

This commit is contained in:
2026-09-04 12:59:28 +05:30
parent 8120ebb927
commit e6884a148b
56 changed files with 4419 additions and 370 deletions

26
docker/nginx.conf Normal file
View File

@@ -0,0 +1,26 @@
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# The web bundle calls /api/v1 so it stays same-origin in Docker.
location /api/ {
proxy_pass http://api:4000/api/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location = /health {
proxy_pass http://api:4000/health;
}
# Expo Router static output and client-side routes.
location / {
try_files $uri $uri/ /index.html;
}
}