comparison xml/en/docs/http/ngx_http_scgi_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_scgi_module" 10 <module name="Module ngx_http_scgi_module"
11 link="/en/docs/http/ngx_http_scgi_module.html" 11 link="/en/docs/http/ngx_http_scgi_module.html"
12 lang="en" 12 lang="en"
13 rev="15"> 13 rev="16">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_scgi_module</literal> module allows passing 18 The <literal>ngx_http_scgi_module</literal> module allows passing
1050 </para> 1050 </para>
1051 1051
1052 </directive> 1052 </directive>
1053 1053
1054 1054
1055 <directive name="scgi_request_buffering">
1056 <syntax><value>on</value> | <value>off</value></syntax>
1057 <default>on</default>
1058 <context>http</context>
1059 <context>server</context>
1060 <context>location</context>
1061 <appeared-in>1.7.11</appeared-in>
1062
1063 <para>
1064 Enables or disables buffering of a client request body.
1065 </para>
1066
1067 <para>
1068 When buffering is enabled, the entire request body is
1069 <link doc="ngx_http_core_module.xml" id="client_body_buffer_size">read</link>
1070 from the client before sending the request to a proxied server.
1071 </para>
1072
1073 <para>
1074 When buffering is disabled, the request body is sent to the proxied server
1075 immediately as it is received.
1076 In this case, the request cannot be
1077 <link id="scgi_next_upstream">sent to the next server</link>
1078 if nginx already started sending the request body.
1079 </para>
1080
1081 <para>
1082 When HTTP/1.1 chunked transfer encoding is used
1083 to send the original request body,
1084 the request body will be buffered.
1085 </para>
1086
1087 </directive>
1088
1089
1055 <directive name="scgi_send_timeout"> 1090 <directive name="scgi_send_timeout">
1056 <syntax><value>time</value></syntax> 1091 <syntax><value>time</value></syntax>
1057 <default>60s</default> 1092 <default>60s</default>
1058 <context>http</context> 1093 <context>http</context>
1059 <context>server</context> 1094 <context>server</context>