From 4e8f11dee3b7dcea7472058f4182ddd36b86c781 Mon Sep 17 00:00:00 2001 From: Artur K Date: Sat, 11 Sep 2021 14:55:09 +0300 Subject: http: limit requests per connection Fixes: https://github.com/nodejs/node/issues/40071 PR-URL: https://github.com/nodejs/node/pull/40082 Reviewed-By: Matteo Collina Reviewed-By: Robert Nagy --- doc/api/http.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'doc/api') diff --git a/doc/api/http.md b/doc/api/http.md index 65f2ca3d718..0f5f5a8bb11 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1352,6 +1352,22 @@ By default, the Server does not timeout sockets. However, if a callback is assigned to the Server's `'timeout'` event, timeouts must be handled explicitly. +### `server.maxRequestsPerSocket` + + +* {number} Requests per socket. **Default:** null (no limit) + +The maximum number of requests socket can handle +before closing keep alive connection. + +A value of `null` will disable the limit. + +When limit is reach it will set `Connection` header value to `closed`, +but will not actually close the connection, subsequent requests sent +after the limit is reached will get `503 Service Unavailable` as a response. + ### `server.timeout`