Skip to content

Instantly share code, notes, and snippets.

@karlosmid
Created August 14, 2021 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karlosmid/f255983a1df14cdd7f0a5038f7ff5d8e to your computer and use it in GitHub Desktop.
Save karlosmid/f255983a1df14cdd7f0a5038f7ff5d8e to your computer and use it in GitHub Desktop.
HTTP 431 logged by Cowboy HTTP server
Cowboy returned 431 because it was unable to parse the request headers. This may happen because there are no headers, or there are too many headers or the header name or value are too large (such as a large cookie). You can customize those values when configuring your http/https server. The configuration option and default values are shown below: protocol_options: [ max_header_name_length: 64, max_header_value_length: 4096, max_headers: 100 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment