comparison xml/en/docs/http/ngx_http_uwsgi_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_uwsgi_module" 10 <module name="Module ngx_http_uwsgi_module"
11 link="/en/docs/http/ngx_http_uwsgi_module.html" 11 link="/en/docs/http/ngx_http_uwsgi_module.html"
12 lang="en" 12 lang="en"
13 rev="17"> 13 rev="18">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_uwsgi_module</literal> module allows passing 18 The <literal>ngx_http_uwsgi_module</literal> module allows passing
1092 </para> 1092 </para>
1093 1093
1094 </directive> 1094 </directive>
1095 1095
1096 1096
1097 <directive name="uwsgi_request_buffering">
1098 <syntax><value>on</value> | <value>off</value></syntax>
1099 <default>on</default>
1100 <context>http</context>
1101 <context>server</context>
1102 <context>location</context>
1103 <appeared-in>1.7.11</appeared-in>
1104
1105 <para>
1106 Enables or disables buffering of a client request body.
1107 </para>
1108
1109 <para>
1110 When buffering is enabled, the entire request body is
1111 <link doc="ngx_http_core_module.xml" id="client_body_buffer_size">read</link>
1112 from the client before sending the request to a proxied server.
1113 </para>
1114
1115 <para>
1116 When buffering is disabled, the request body is sent to the proxied server
1117 immediately as it is received.
1118 In this case, the request cannot be
1119 <link id="uwsgi_next_upstream">sent to the next server</link>
1120 if nginx already started sending the request body.
1121 </para>
1122
1123 <para>
1124 When HTTP/1.1 chunked transfer encoding is used
1125 to send the original request body,
1126 the request body will be buffered.
1127 </para>
1128
1129 </directive>
1130
1131
1097 <directive name="uwsgi_send_timeout"> 1132 <directive name="uwsgi_send_timeout">
1098 <syntax><value>time</value></syntax> 1133 <syntax><value>time</value></syntax>
1099 <default>60s</default> 1134 <default>60s</default>
1100 <context>http</context> 1135 <context>http</context>
1101 <context>server</context> 1136 <context>server</context>