28 lines
677 B
Plaintext
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";
|
|
}
|
|
}
|