Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions doc/admin-guide/files/records.config.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2942,6 +2942,20 @@ HTTP/2 Configuration
.. note:: Reloading this value affects only new HTTP/2 connections, not the
ones already established.

.. ts:cv:: CONFIG proxy.config.http2.min_concurrent_streams_in INT 10
:reloadable:

The minimum number of concurrent streams per inbound connection.
This is used when `proxy.config.http2.max_active_streams_in` is set larger than 0.

.. ts:cv:: CONFIG proxy.config.http2.max_active_streams_in INT 0
:reloadable:

Limits the maximum number of connection wide active streams.
When connection wide active streams are larger than this value,
SETTINGS_MAX_CONCURRENT_STREAMS will be reduced to `proxy.config.http2.min_concurrent_streams_in`.
To disable, set to zero (``0``).

.. ts:cv:: CONFIG proxy.config.http2.initial_window_size_in INT 1048576
:reloadable:

Expand Down