comparison xml/en/docs/http/ngx_http_fastcgi_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 9104a921d940
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_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="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_fastcgi_module</literal> module allows to pass 18 The <literal>ngx_http_fastcgi_module</literal> module allows to pass
782 </para> 782 </para>
783 783
784 </directive> 784 </directive>
785 785
786 786
787 <directive name="fastcgi_send_lowat">
788 <syntax><value>size</value></syntax>
789 <default>0</default>
790 <context>http</context>
791 <context>server</context>
792 <context>location</context>
793
794 <para>
795 If set to a non-zero value, nginx will try to minimize the number
796 of send operations on outgoing connections to a FastCGI server by using either
797 <c-def>NOTE_LOWAT</c-def> flag of the
798 <link doc="../events.xml" id="kqueue"/> method,
799 or the <c-def>SO_SNDLOWAT</c-def> socket option,
800 with the specified <value>size</value>.
801 </para>
802
803 <para>
804 This directive is ignored on Linux, Solaris, and Windows.
805 </para>
806
807 </directive>
808
809
787 <directive name="fastcgi_send_timeout"> 810 <directive name="fastcgi_send_timeout">
788 <syntax><value>time</value></syntax> 811 <syntax><value>time</value></syntax>
789 <default>60s</default> 812 <default>60s</default>
790 <context>http</context> 813 <context>http</context>
791 <context>server</context> 814 <context>server</context>