comparison xml/en/docs/http/ngx_http_fastcgi_module.xml @ 1437:8e7995bb8c6b

Documented proxy_request_buffering and friends.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 24 Mar 2015 15:17:21 +0300
parents 66ee77849563
children 657885fd2b96
comparison
equal deleted inserted replaced
1436:2333e08e277d 1437:8e7995bb8c6b
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_fastcgi_module" 10 <module name="Module ngx_http_fastcgi_module"
11 link="/en/docs/http/ngx_http_fastcgi_module.html" 11 link="/en/docs/http/ngx_http_fastcgi_module.html"
12 lang="en" 12 lang="en"
13 rev="27"> 13 rev="28">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_fastcgi_module</literal> module allows passing 18 The <literal>ngx_http_fastcgi_module</literal> module allows passing
1150 </para> 1150 </para>
1151 1151
1152 </directive> 1152 </directive>
1153 1153
1154 1154
1155 <directive name="fastcgi_request_buffering">
1156 <syntax><value>on</value> | <value>off</value></syntax>
1157 <default>on</default>
1158 <context>http</context>
1159 <context>server</context>
1160 <context>location</context>
1161 <appeared-in>1.7.11</appeared-in>
1162
1163 <para>
1164 Enables or disables buffering of a client request body.
1165 </para>
1166
1167 <para>
1168 When buffering is enabled, the entire request body is
1169 <link doc="ngx_http_core_module.xml" id="client_body_buffer_size">read</link>
1170 from the client before sending the request to a proxied server.
1171 </para>
1172
1173 <para>
1174 When buffering is disabled, the request body is sent to the proxied server
1175 immediately as it is received.
1176 In this case, the request cannot be
1177 <link id="fastcgi_next_upstream">sent to the next server</link>
1178 if nginx already started sending the request body.
1179 </para>
1180
1181 </directive>
1182
1183
1155 <directive name="fastcgi_send_lowat"> 1184 <directive name="fastcgi_send_lowat">
1156 <syntax><value>size</value></syntax> 1185 <syntax><value>size</value></syntax>
1157 <default>0</default> 1186 <default>0</default>
1158 <context>http</context> 1187 <context>http</context>
1159 <context>server</context> 1188 <context>server</context>