comparison xml/en/docs/http/ngx_http_limit_conn_module.xml @ 1347:7d028fc94593

Added a note about SPDY connections in limit_conn. Requested by Gunnlaugur Thor Briem.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 30 Oct 2014 18:20:37 +0400
parents f15a983cac66
children 0ca33afb461b
comparison
equal deleted inserted replaced
1346:9825126ffdbc 1347:7d028fc94593
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_limit_conn_module" 10 <module name="Module ngx_http_limit_conn_module"
11 link="/en/docs/http/ngx_http_limit_conn_module.html" 11 link="/en/docs/http/ngx_http_limit_conn_module.html"
12 lang="en" 12 lang="en"
13 rev="4"> 13 rev="5">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_limit_conn_module</literal> module is used to 18 The <literal>ngx_http_limit_conn_module</literal> module is used to
74 location /download/ { 74 location /download/ {
75 limit_conn addr 1; 75 limit_conn addr 1;
76 } 76 }
77 </example> 77 </example>
78 allow only one connection per an IP address at a time. 78 allow only one connection per an IP address at a time.
79 <note>
80 In SPDY, each concurrent request is considered a separate connection.
81 </note>
79 </para> 82 </para>
80 83
81 <para> 84 <para>
82 When several <literal>limit_conn</literal> directives are specified, 85 When several <literal>limit_conn</literal> directives are specified,
83 any configured limit will apply. 86 any configured limit will apply.