comparison xml/en/docs/http/ngx_http_proxy_module.xml @ 773:24b1b0101250

Documented "send_lowat" directive in fastcgi and proxy modules.
author Vladimir Homutov <vl@nginx.com>
date Fri, 23 Nov 2012 07:38:47 +0000
parents ce121bf644f5
children 180a64c709d8
comparison
equal deleted inserted replaced
772:ce121bf644f5 773:24b1b0101250
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_proxy_module" 10 <module name="Module ngx_http_proxy_module"
11 link="/en/docs/http/ngx_http_proxy_module.html" 11 link="/en/docs/http/ngx_http_proxy_module.html"
12 lang="en" 12 lang="en"
13 rev="2"> 13 rev="3">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_proxy_module</literal> module allows to pass 18 The <literal>ngx_http_proxy_module</literal> module allows to pass
1086 </para> 1086 </para>
1087 1087
1088 </directive> 1088 </directive>
1089 1089
1090 1090
1091 <directive name="proxy_send_lowat">
1092 <syntax><value>size</value></syntax>
1093 <default>0</default>
1094 <context>http</context>
1095 <context>server</context>
1096 <context>location</context>
1097
1098 <para>
1099 If set to a non-zero value, nginx will try to minimize the number
1100 of send operations on outgoing connections to a proxied server by using either
1101 <c-def>NOTE_LOWAT</c-def> flag of the
1102 <link doc="../events.xml" id="kqueue"/> method,
1103 or the <c-def>SO_SNDLOWAT</c-def> socket option,
1104 with the specified <value>size</value>.
1105 </para>
1106
1107 <para>
1108 This directive is ignored on Linux, Solaris, and Windows.
1109 </para>
1110
1111 </directive>
1112
1113
1091 <directive name="proxy_send_timeout"> 1114 <directive name="proxy_send_timeout">
1092 <syntax><value>time</value></syntax> 1115 <syntax><value>time</value></syntax>
1093 <default>60s</default> 1116 <default>60s</default>
1094 <context>http</context> 1117 <context>http</context>
1095 <context>server</context> 1118 <context>server</context>