Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTim Costa <tim@timcosta.io>2019-10-23 01:17:03 +0300
committerRich Trott <rtrott@gmail.com>2019-12-14 16:59:19 +0300
commite17403ede37d5879c2fa8e9d2c71f1eacbea9366 (patch)
tree7d9411804e6f5be5de437422ef9d7ca3376c1a1a /doc
parent9c460e10d10570c6783fd51e885a50ea99464943 (diff)
http,https: increase server headers timeout
Fixes: https://github.com/nodejs/node/issues/24980 Refs: https://github.com/nodejs/node/commit/eb43bc04b1 PR-URL: https://github.com/nodejs/node/pull/30071 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/http.md2
-rw-r--r--doc/api/https.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index f0d02117e6b..6427d56beee 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1107,7 +1107,7 @@ Stops the server from accepting new connections. See [`net.Server.close()`][].
added: v11.3.0
-->
-* {number} **Default:** `40000`
+* {number} **Default:** `60000`
Limit the amount of time the parser will wait to receive the complete HTTP
headers.
diff --git a/doc/api/https.md b/doc/api/https.md
index 01e07a24d8a..252d4bb3395 100644
--- a/doc/api/https.md
+++ b/doc/api/https.md
@@ -94,7 +94,7 @@ See [`server.close()`][`http.close()`] from the HTTP module for details.
added: v11.3.0
-->
-* {number} **Default:** `40000`
+* {number} **Default:** `60000`
See [`http.Server#headersTimeout`][].