comparison xml/en/docs/http/ngx_http_core_module.xml @ 2220:896562a1ccde

Fixed description of client_header_timeout and client_body_timeout. In the event of timeout, the error is not propagated to the client (ticket #1005).
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 15 Aug 2018 13:52:53 +0300
parents 5cacd6fffade
children 144c8e3d6c09
comparison
equal deleted inserted replaced
2219:f1e12641fc8a 2220:896562a1ccde
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_core_module" 10 <module name="Module ngx_http_core_module"
11 link="/en/docs/http/ngx_http_core_module.html" 11 link="/en/docs/http/ngx_http_core_module.html"
12 lang="en" 12 lang="en"
13 rev="80"> 13 rev="81">
14 14
15 <section id="directives" name="Directives"> 15 <section id="directives" name="Directives">
16 16
17 <directive name="absolute_redirect"> 17 <directive name="absolute_redirect">
18 <syntax><literal>on</literal> | <literal>off</literal></syntax> 18 <syntax><literal>on</literal> | <literal>off</literal></syntax>
376 <para> 376 <para>
377 Defines a timeout for reading client request body. 377 Defines a timeout for reading client request body.
378 The timeout is set only for a period between two successive read operations, 378 The timeout is set only for a period between two successive read operations,
379 not for the transmission of the whole request body. 379 not for the transmission of the whole request body.
380 If a client does not transmit anything within this time, the 380 If a client does not transmit anything within this time, the
381 request is terminated with the
381 <http-status code="408" text="Request Time-out"/> 382 <http-status code="408" text="Request Time-out"/>
382 error is returned to the client. 383 error.
383 </para> 384 </para>
384 385
385 </directive> 386 </directive>
386 387
387 388
412 <context>server</context> 413 <context>server</context>
413 414
414 <para> 415 <para>
415 Defines a timeout for reading client request header. 416 Defines a timeout for reading client request header.
416 If a client does not transmit the entire header within this time, the 417 If a client does not transmit the entire header within this time, the
418 request is terminated with the
417 <http-status code="408" text="Request Time-out"/> 419 <http-status code="408" text="Request Time-out"/>
418 error is returned to the client. 420 error.
419 </para> 421 </para>
420 422
421 </directive> 423 </directive>
422 424
423 425