Files
ewoooc/110-ollama-proxy.conf
OoO ba5fe06b13
Some checks failed
CD Pipeline / deploy (push) Has been cancelled
fix: update ollama primary host
2026-06-18 14:24:55 +08:00

28 lines
676 B
Plaintext

# 110 Ollama GCP Proxy — ADR-028 三主機級聯轉發
server {
listen 11435;
location / {
proxy_pass http://34.87.90.216:11434;
proxy_connect_timeout 10s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
proxy_buffering off;
}
location /nginx-health {
return 200 "Ollama GCP-A Proxy OK\n";
}
}
server {
listen 11436;
location / {
proxy_pass http://34.21.145.224:11434;
proxy_connect_timeout 10s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
proxy_buffering off;
}
location /nginx-health {
return 200 "Ollama GCP-B Proxy OK\n";
}
}