comparison xml/en/docs/http/ngx_http_core_module.xml @ 162:a8bd350e3481

Documented the "chunked_transfer_encoding" directive.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 31 Oct 2011 13:31:33 +0000
parents ec980064d576
children b7b160e4e046
comparison
equal deleted inserted replaced
161:ec980064d576 162:a8bd350e3481
180 <example> 180 <example>
181 location /images/ { 181 location /images/ {
182 root /data/w3; 182 root /data/w3;
183 } 183 }
184 </example> 184 </example>
185 </para>
186
187 </directive>
188
189
190 <directive name="chunked_transfer_encoding">
191 <syntax><value>on</value> | <value>off</value></syntax>
192 <default>on</default>
193 <context>http</context>
194 <context>server</context>
195 <context>location</context>
196
197 <para>
198 Allows disabling chunked transfer encoding in HTTP/1.1.
199 It may come in handy when using a software failing to support
200 chunked encoding though the standard requires it.
185 </para> 201 </para>
186 202
187 </directive> 203 </directive>
188 204
189 205