1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 03:38:07 +03:00

fix(cluster0): Gitea cluster proxy, 2FA seed, hub downloads nginx

Bind Gitea on all interfaces for cast02/03 proxy, fix stale 2FA lab-seed
approve flow, add /v0/downloads/ and GITEA_UPSTREAM_HOST, and guard nginx
configure against empty templates.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-07-10 15:36:49 +02:00
parent 970de79a90
commit a14413e886
6 changed files with 78 additions and 16 deletions

View File

@@ -10,8 +10,13 @@ ensure_shared_mounted
GIT_NGINX="/mnt/repos/ac/ac-deploy/sim/cluster0/nginx/apps-port80.conf"
CONF_DST="$ROOT/nginx/apps-port80.conf"
if [ -f "$GIT_NGINX" ] && [ "$(realpath "$GIT_NGINX" 2>/dev/null)" != "$(realpath "$CONF_DST" 2>/dev/null)" ]; then
install -D -m 644 "$GIT_NGINX" "$CONF_DST"
if [ -s "$GIT_NGINX" ]; then
install -D -m 644 "$GIT_NGINX" "$CONF_DST"
else
log "WARN: skip empty GIT_NGINX at $GIT_NGINX"
fi
fi
[ -s "$CONF_DST" ] || die "missing or empty nginx template at $CONF_DST"
install -D -m 644 "$CONF_DST" /etc/nginx/http.d/androidcast.conf
rm -f /etc/nginx/http.d/default.conf /etc/nginx/http.d/cluster.conf 2>/dev/null || true
nginx -t