1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 07:37:47 +03:00
Files
ac-deploy/sim/cluster0/lab-seeds/backend/nginx.fe-ota.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
567 B
Plaintext

# FE apps.f0xx.org — OTA channel at site root (/v0/ota/…).
# BE serves files on listen 80; hub/crashes may use :443 upstream — OTA must hit :80.
#
# Paste inside server { listen 443 ssl; server_name apps.f0xx.org; } before androidcast blocks.
location /v0/ota/ {
proxy_pass http://artc0.intra.raptor.org:80;
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;
}