9 lines
332 B
Plaintext
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;
|
|
}
|