- compose.cloud.yml: snipe-cloud project, proper Docker bridge network (api is internal-only, no host port), port 8514 for nginx - docker/web/Dockerfile: VITE_BASE_URL + VITE_API_BASE build args so Vite bakes the /snipe path prefix into the bundle at cloud build time - docker/web/nginx.cloud.conf: upstream api:8510 via Docker network (vs 172.17.0.1:8510 in dev which uses host networking) - manage.sh: cloud-start/stop/restart/status/logs/build commands - stores/search.ts: VITE_API_BASE prefix on all /api fetch calls Gate: Caddy basicauth (username: cf) — temporary gate while proper Heimdall license validation UI is built. Password stored at /devl/snipe-cloud-data/.beta-password (host-only, not in repo). Note: Caddyfile updated separately (caddy-proxy volume, not this repo).
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Proxy API requests to the FastAPI container via Docker bridge network.
|
|
# In cloud, 'api' resolves to the api service container — no host networking needed.
|
|
location /api/ {
|
|
proxy_pass http://api:8510;
|
|
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 $http_x_forwarded_proto;
|
|
}
|
|
|
|
# index.html — never cache; ensures clients always get the latest entry point
|
|
location = /index.html {
|
|
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
# SPA fallback for all other routes
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Cache static assets aggressively — content hash in filename guarantees freshness
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2?)$ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
}
|