<div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">Thanks,</div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif"><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif">I imagined to be something like that, but this is not obvious from the documentation. Is there a way to clarify it for future readers?</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 19, 2017 at 3:26 PM, Maxim Dounin <span dir="ltr"><<a href="mailto:mdounin@mdounin.ru" target="_blank">mdounin@mdounin.ru</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello!<br>
<div><div class="h5"><br>
On Tue, Dec 19, 2017 at 06:36:00AM +0100, Abilio Marques wrote:<br>
<br>
> limit_conn is not working for me. I set up a test in nodejs, I'm doing GET<br>
> requests to <a href="http://localhost/" rel="noreferrer" target="_blank">http://localhost/</a>, they are coming from different connections<br>
> (different origin ports), and all the connections are still open until the<br>
> very end, still, no response other than 200 is received. I double check<br>
> with wireshark.<br>
><br>
> What am I missing??<br>
><br>
> Minimal configuration I can reproduce it with: <a href="https://paste.ngx.cc/70" rel="noreferrer" target="_blank">https://paste.ngx.cc/70</a><br>
> Source code for the test: <a href="https://paste.ngx.cc/6f" rel="noreferrer" target="_blank">https://paste.ngx.cc/6f</a><br>
<br>
</div></div>The limit_conn limit only limits connections with active requests.<br>
Moreover, it only applies after reading request headers - as nginx<br>
needs to know requested host and URI to check limits appropriate<br>
for particular server and location blocks.<br>
<br>
As a result, it is almost impossible to trigger limit_conn by<br>
requests to small static files.  To trigger limit_conn, consider<br>
testing it with files large enough to fill up socket buffers,<br>
and/or with proxying.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Maxim Dounin<br>
<a href="http://mdounin.ru/" rel="noreferrer" target="_blank">http://mdounin.ru/</a><br>
______________________________<wbr>_________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/<wbr>mailman/listinfo/nginx</a><br>
</font></span></blockquote></div><br></div>