From f8765be817b2aae2da5c75c7a1e5a7ec09418e5e Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 28 Jan 2015 00:46:16 +0900 Subject: [PATCH] nghttpx: Make --backend-keep-alive-timeout default to 2s --- src/shrpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx.cc b/src/shrpx.cc index bf43f809..5c1defd3 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -670,7 +670,7 @@ void fill_default_config() { mod_config()->stream_write_timeout = 0.; // Timeout for pooled (idle) connections - mod_config()->downstream_idle_read_timeout = 600.; + mod_config()->downstream_idle_read_timeout = 2.; // window bits for HTTP/2 and SPDY upstream/downstream connection // per stream. 2**16-1 = 64KiB-1, which is HTTP/2 default. Please