From dfb473fd00dd615a1766f30ef2ad50f3098849a7 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sun, 13 Oct 2024 14:50:22 +0300 Subject: [PATCH] nginx stream reverse proxy: use default timeout 3s is too short for connect timeout when the user it manually typing a password http://nginx.org/en/docs/stream/ngx_stream_proxy_module.html#proxy_connect_timeout --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 9cefbec..66f6724 100644 --- a/README.md +++ b/README.md @@ -506,8 +506,6 @@ lxc-helpers.sh lxc_install_lxc_inside 10.41.13 fc29 listen 2080; # the port to listen on this server listen [::]:2080; proxy_pass v8; # forward traffic to this upstream group - proxy_timeout 3s; - proxy_connect_timeout 3s; } } ```