diff options
author | Stefan Eissing <icing@apache.org> | 2015-12-07 16:22:11 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-12-07 16:22:11 +0100 |
commit | d093f82ceed846b3b8f59867aaffe3f359a318af (patch) | |
tree | 8c79a9d35ade4be264d41b36cda98b15a4c63315 /docs/manual/mod/mod_http2.xml | |
parent | fixing duplice response headers, in case post_read_req hook gets called twice (diff) | |
download | apache2-d093f82ceed846b3b8f59867aaffe3f359a318af.tar.xz apache2-d093f82ceed846b3b8f59867aaffe3f359a318af.zip |
removing weight from H2PushPriority with dependency 'before' as on stream close, priorities would not be as before otherwise
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1718400 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_http2.xml')
-rw-r--r-- | docs/manual/mod/mod_http2.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_http2.xml b/docs/manual/mod/mod_http2.xml index f4a17dc03e..1648eb73ef 100644 --- a/docs/manual/mod/mod_http2.xml +++ b/docs/manual/mod/mod_http2.xml @@ -267,15 +267,15 @@ </p> <example><title>Before Priority Rule</title> <highlight language="config"> - H2PushPriority application/json Before 256 + H2PushPriority application/json Before </highlight> </example> <p> This says that any pushed stream of content type 'application/json' should be send out <em>before</em> X. This makes P1 dependent on Y and X dependent on P1. So, X will be stalled as long as - P1 has data to send. The effective weight is calculated as - in the interleaved case. + P1 has data to send. The effective weight is inherited from the + client stream. Specifying a weight is not allowed. </p> <p> Be aware that the effect of priority specifications is limited @@ -291,13 +291,13 @@ <li>'*' is the only special content-type that matches all others. 'image/*' will not work.</li> <li>The default dependency is 'After'. </li> - <li>There are also default weights: for 'After' it is 16, otherwise 256. + <li>There are also default weights: for 'After' it is 16, 'interleaved' is 256. </li> </ol> <example><title>Shorter Priority Rules</title> <highlight language="config"> H2PushPriority application/json 32 # an After rule -H2PushPriority image/jpeg before # weight 256 default +H2PushPriority image/jpeg before # weight inherited H2PushPriority text/css interleaved # weight 256 default </highlight> </example> |