You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixing limits on response header size
* Fixed bug in handling over long response headers. When the 64 KB limit
of nghttp2 was exceeded, the request was not reset and the client was
left hanging, waiting for it. Now the stream is reset.
* Added new directive `H2MaxHeaderBlockLen` to set the limit on response
header sizes.
@@ -225,6 +226,14 @@ H2MaxDataFrameLen limits the maximum amount of response body bytes placed into a
225
226
226
227
The module, by default, tries to use the maximum size possible, which is somewhat around 16KB. This sets the maximum. When less response data is available, smaller frames will be sent.
227
228
229
+
### H2MaxHeaderBlockLen
230
+
```
231
+
Syntax: H2MaxHeaderBlockLen n
232
+
Default: H2MaxHeaderBlockLen 0
233
+
Context: server config, virtual host
234
+
```
235
+
H2MaxHeaderBlockLen set the limit on the maximum size of the uncompressed headers of a response. This is the accumulated size of all headers in a response. Setting this to 0 means the nghttp2 default of 64 KB applies.
0 commit comments