Files
ewoooc/110-ollama-proxy.conf
OoO b65a319cb8
Some checks failed
CD Pipeline / deploy (push) Has been cancelled
固化 Ollama 三主機路由紅線
2026-05-13 12:09:40 +08:00

28 lines
677 B
Plaintext

# 110 Ollama GCP Proxy — ADR-028 三主機級聯轉發
server {
listen 11435;
location / {
proxy_pass http://34.143.170.20: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";
}
}