1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 05:00:35 +03:00
Files
ac-deploy/sim/cluster0/lab-seeds/backend/nginx.fe-build-inline.snippet
Anton Afanasyeu c554dc761d cluster0: lab seeds, Gitea mirrors, compose mail, verify tooling
Freeze lab-seeds backend for COMPOSE_SKIP_MONOLITH; fix Gitea mirror scripts
for 1.25 API; add secrets.lab.env template, verify-mail-lab, LAB_PUBLIC_ORIGIN,
and credentials pointers for mirror token recovery.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 17:07:46 +02:00

14 lines
644 B
Plaintext

# Paste into Gentoo FE /etc/nginx/nginx.conf inside server { listen 443; server_name apps.f0xx.org; }
# Place immediately AFTER the crashes location block (same style as hub + crashes).
location /app/androidcast_project/build/ {
proxy_pass https://artc0.intra.raptor.org/app/androidcast_project/build/;
}
# Then REMOVE or comment out the build location in /etc/nginx/apps.conf (avoid duplicate/conflict).
# Reload: nginx -t && rc-service nginx reload
# Verify from FE:
# curl -sSI -H 'Host: apps.f0xx.org' http://127.0.0.1/app/androidcast_project/build/ | head -5
# Expect 302 + x-powered-by: PHP (after BE fragment is fixed too).