mirror of
git://f0xx.org/ac/ac-deploy
synced 2026-07-29 07:17:38 +03:00
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>
14 lines
644 B
Plaintext
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).
|