Files
wehub-resource-sync 542cfa195c
CI / Frontend build (push) Failing after 9m6s
CI / Plugin validate (push) Failing after 9m27s
CI / Python lint (push) Failing after 16m1s
CI / Tests (push) Successful in 18m0s
Deploy / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:27 +08:00

9 lines
332 B
Plaintext

# Blue-green upstream for the PixelRAG search API. Installed at
# /etc/nginx/conf.d/pixelrag-api-upstream.conf and rewritten by
# deploy/api-switch.sh to point api.pixelrag.ai at the active slot.
# blue = 127.0.0.1:30001 (base model)
# green = 127.0.0.1:30002 (LoRA model)
upstream pixelrag_api {
server 127.0.0.1:30001;
}