From c0cbfae0e3e8086b642e587ec2bb0e2403397a96 Mon Sep 17 00:00:00 2001 From: Huachao Mao Date: Mon, 14 Oct 2019 11:18:21 +0800 Subject: [PATCH] doc: add server header into the discarded list of http message.headers PR-URL: https://github.com/nodejs/node/pull/29962 Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat --- doc/api/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/http.md b/doc/api/http.md index eee6d506e085e6..07782e1d873dab 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1701,7 +1701,7 @@ header name: * Duplicates of `age`, `authorization`, `content-length`, `content-type`, `etag`, `expires`, `from`, `host`, `if-modified-since`, `if-unmodified-since`, `last-modified`, `location`, `max-forwards`, `proxy-authorization`, `referer`, -`retry-after`, or `user-agent` are discarded. +`retry-after`, `server`, or `user-agent` are discarded. * `set-cookie` is always an array. Duplicates are added to the array. * For duplicate `cookie` headers, the values are joined together with '; '. * For all other headers, the values are joined together with ', '.