comparison xml/en/docs/http/ngx_http_v2_module.xml @ 1596:e491c669220e

Documented http2_max_field_size, http2_max_header_size
author Yaroslav Zhuravlev <yar@nginx.com>
date Mon, 21 Sep 2015 11:59:01 +0300
parents c711a8a1a8f9
children 887ce78207ac
comparison
equal deleted inserted replaced
1595:75901b2acf09 1596:e491c669220e
7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
8 8
9 <module name="Module ngx_http_v2_module" 9 <module name="Module ngx_http_v2_module"
10 link="/en/docs/http/ngx_http_v2_module.html" 10 link="/en/docs/http/ngx_http_v2_module.html"
11 lang="en" 11 lang="en"
12 rev="1"> 12 rev="2">
13 13
14 <section id="summary"> 14 <section id="summary">
15 15
16 <para> 16 <para>
17 The <literal>ngx_http_v2_module</literal> module (1.9.5) provides 17 The <literal>ngx_http_v2_module</literal> module (1.9.5) provides
125 </para> 125 </para>
126 126
127 </directive> 127 </directive>
128 128
129 129
130 <directive name="http2_max_field_size">
131 <syntax><value>size</value></syntax>
132 <default>4k</default>
133 <context>http</context>
134 <context>server</context>
135
136 <para>
137 Limits the maximum size of
138 an <link url="http://tools.ietf.org/html/rfc7541">HPACK</link>-compressed
139 request header field.
140 The limit applies equally to both name and value.
141 Note that if Huffman encoding is applied,
142 the actual size of decompressed name and value strings may be larger.
143 For most requests, the default limit should be enough.
144 </para>
145
146 </directive>
147
148
149 <directive name="http2_max_header_size">
150 <syntax><value>size</value></syntax>
151 <default>16k</default>
152 <context>http</context>
153 <context>server</context>
154
155 <para>
156 Limits the maximum size of the entire request header list after
157 <link url="http://tools.ietf.org/html/rfc7541">HPACK</link> decompression.
158 For most requests, the default limit should be enough.
159 </para>
160
161 </directive>
162
163
130 <directive name="http2_recv_buffer_size"> 164 <directive name="http2_recv_buffer_size">
131 <syntax><value>size</value></syntax> 165 <syntax><value>size</value></syntax>
132 <default>256k</default> 166 <default>256k</default>
133 <context>http</context> 167 <context>http</context>
134 168