Skip to content

Commit

Permalink
Note that max HTTP request head size semantics are server-specific
Browse files Browse the repository at this point in the history
Closes gh-40798
  • Loading branch information
wilkinsona committed Oct 18, 2024
1 parent 788fe61 commit 74d13d3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ public class ServerProperties {
private String serverHeader;

/**
* Maximum size of the HTTP request header.
* Maximum size of the HTTP request header. Refer to the documentation for your chosen
* embedded server for details of exactly how this limit is applied. For example,
* Netty applies the limit separately to each individual header in the request whereas
* Tomcat applies the limit to the combined size of the request line and all of the
* header names and values in the request.
*/
private DataSize maxHttpRequestHeaderSize = DataSize.ofKilobytes(8);

Expand Down

0 comments on commit 74d13d3

Please sign in to comment.