comparison xml/en/docs/http/ngx_http_core_module.xml @ 2118:0b3103eabdf1

Documented the "subrequest_output_buffer_size" directive.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 20 Mar 2018 21:03:28 +0300
parents d2969b2f69ae
children cf9e3d2893b6
comparison
equal deleted inserted replaced
2117:632fe2d874ab 2118:0b3103eabdf1
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="74"> 13 rev="75">
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>
2568 </para> 2568 </para>
2569 2569
2570 </directive> 2570 </directive>
2571 2571
2572 2572
2573 <directive name="subrequest_output_buffer_size">
2574 <syntax><value>size</value></syntax>
2575 <default>4k|8k</default>
2576 <context>http</context>
2577 <context>server</context>
2578 <context>location</context>
2579 <appeared-in>1.13.10</appeared-in>
2580
2581 <para>
2582 Sets the <value>size</value> of the buffer used for
2583 storing the response body of a subrequest.
2584 By default, the buffer size is equal to one memory page.
2585 This is either 4K or 8K, depending on a platform.
2586 It can be made smaller, however.
2587 </para>
2588
2589 <para>
2590 The directive is applicable only for subrequests
2591 with response bodies saved into memory.
2592 For example, such subrequests are created by
2593 <link doc="ngx_http_ssi_module.xml" id="ssi_include_set">SSI</link>.
2594 </para>
2595
2596 </directive>
2597
2598
2573 <directive name="tcp_nodelay"> 2599 <directive name="tcp_nodelay">
2574 <syntax><literal>on</literal> | <literal>off</literal></syntax> 2600 <syntax><literal>on</literal> | <literal>off</literal></syntax>
2575 <default>on</default> 2601 <default>on</default>
2576 <context>http</context> 2602 <context>http</context>
2577 <context>server</context> 2603 <context>server</context>