<div dir="ltr">You shouldn't be changing worker_connections, this is the total number of connections (of any type) permitted per worker. <div><br></div><div>Take a look at the documentation at <a href="http://nginx.org/en/docs/">http://nginx.org/en/docs/</a></div><div><br></div><div>Of interest to you are <a href="http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html">http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html</a> and <a href="http://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate">http://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate</a></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jul 4, 2017 at 10:01 AM, guruprasads <span dir="ltr"><<a href="mailto:nginx-forum@forum.nginx.org" target="_blank">nginx-forum@forum.nginx.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I am trying to tune nginx server.<br>
I want to restrict number of client connection per server and restrict<br>
bandwidth.<br>
I tried<br>
worker_connections 2;<br>
for max connections in nginx.conf file.<br>
but its connecting only after worker_connection value set to 7.<br>
<br>
my conf file look like below.<br>
<br>
user nginx;<br>
worker_processes auto;<br>
error_log /var/log/nginx/error.log;<br>
pid /run/nginx.pid;<br>
<br>
# Load dynamic modules. See /usr/share/nginx/README.<wbr>dynamic.<br>
include /usr/share/nginx/modules/*.<wbr>conf;<br>
<br>
events {<br>
    worker_connections 7;<br>
}<br>
<br>
thanks.<br>
<br>
Posted at Nginx Forum: <a href="https://forum.nginx.org/read.php?2,275276,275276#msg-275276" rel="noreferrer" target="_blank">https://forum.nginx.org/read.<wbr>php?2,275276,275276#msg-275276</a><br>
<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>
</blockquote></div><br></div>