From e2b9590c0f7df4d61c1d72ad5b465fb98d1d8efa Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 20 Feb 2017 22:18:49 +0900 Subject: [PATCH] nghttpx: Enable stream-write-timeout by default --- src/shrpx.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shrpx.cc b/src/shrpx.cc index cbde333a..82c23e6e 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -1485,6 +1485,8 @@ void fill_default_config(Config *config) { upstreamconf.alt_mode_option, upstreamconf.encoder_dynamic_table_size); } + http2conf.timeout.stream_write = 1_min; + { auto &downstreamconf = http2conf.downstream;