From ccf7036f331c4bf246d33acf99fce5d30130db0d Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Thu, 2 May 2024 00:43:10 -0700 Subject: [PATCH] Longer timeouts --- docs/config-local-ollama.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/config-local-ollama.md b/docs/config-local-ollama.md index 5ed893164..79baca069 100644 --- a/docs/config-local-ollama.md +++ b/docs/config-local-ollama.md @@ -80,6 +80,11 @@ Then, edit the nginx configuration file `/etc/nginx/sites-enabled/default` and a chunked_transfer_encoding off; proxy_buffering off; proxy_cache off; + + # Longer timeouts + proxy_read_timeout 3600; + proxy_connect_timeout 3600; + proxy_send_timeout 3600; } ```