From cdc3d4824e05254eae01b3c7dc9b32632908cf28 Mon Sep 17 00:00:00 2001 From: Selivanov Pavel Date: Tue, 19 Apr 2016 18:03:40 +0300 Subject: [PATCH] Added non-standard 444 code for nginx (#43) * Added non-standard 444 code for nginx * More explicit about client never seeing this code. * Fixed typo --- contents/codes/444.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 contents/codes/444.md diff --git a/contents/codes/444.md b/contents/codes/444.md new file mode 100644 index 0000000..2da1552 --- /dev/null +++ b/contents/codes/444.md @@ -0,0 +1,18 @@ +--- +# This is not a status code available in the standard, but it exists +# with significant prominence in the wild +set: 4 +code: 444 +title: Nginx closed connection without sending a response. +--- + +A non-standard status code used to instruct [nginx][2] to close the connection without sending a response to the client, most commonly used to deny malicious or malformed requests. + +This status code is not seen by the client, it only appears in nginx log files. + +--- + +* Source: [nginx documentation][1] + +[1]: +[2]: