diff options
author | Stefan Eissing <icing@apache.org> | 2021-02-22 15:11:09 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-02-22 15:11:09 +0100 |
commit | 309e0838934e8a1f94fca24a7a3881f5bc5a3af0 (patch) | |
tree | 3a36b5551b91e75d37730e764f9ff229d5c5f8a3 /docs | |
parent | mod_http2: Fix workers synchronization on pchild cleanup. (diff) | |
download | apache2-309e0838934e8a1f94fca24a7a3881f5bc5a3af0.tar.xz apache2-309e0838934e8a1f94fca24a7a3881f5bc5a3af0.zip |
mod_htt2, synch with changes from github module version:
- logio: improvements to reporting of sent bytes for http2 responses
- directive H2OutputBuffering, controls if any output should be sent immediately.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1886792 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_http2.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_http2.xml b/docs/manual/mod/mod_http2.xml index a4db59cbfd..76d5f6fc7f 100644 --- a/docs/manual/mod/mod_http2.xml +++ b/docs/manual/mod/mod_http2.xml @@ -983,4 +983,26 @@ H2TLSCoolDownSecs 0 </p> </usage> </directivesynopsis> + + <directivesynopsis> + <name>H2OutputBuffering</name> + <description>Determine buffering behaviour of output</description> + <syntax>H2OutputBuffering on/off</syntax> + <default>H2OutputBuffering on</default> + <contextlist> + <context>server config</context> + <context>virtual host</context> + </contextlist> + <compatibility>Available in version 2.4.48 and later.</compatibility> + + <usage> + <p> + The option 'H2OutputBuffering on/off' controls the buffering of stream output. + The default is on, which is the behaviour of previous versions. When off, all + bytes are made available immediately to the main connection for sending them + out to the client. This fixes interop issues with certain flavours of gRPC. + </p> + </usage> + </directivesynopsis> + </modulesynopsis> |