nghttpx: Make --backend-keep-alive-timeout default to 2s

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-28 00:46:16 +09:00
parent f0c7839f25
commit f8765be817
1 changed files with 1 additions and 1 deletions

View File

@ -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