Nginx Tuning

Richard Stanway r1ch+nginx at teamliquid.net
Tue Jul 4 12:23:57 UTC 2017


You shouldn't be changing worker_connections, this is the total number of
connections (of any type) permitted per worker.

Take a look at the documentation at http://nginx.org/en/docs/

Of interest to you are
http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html and
http://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate

On Tue, Jul 4, 2017 at 10:01 AM, guruprasads <nginx-forum at forum.nginx.org>
wrote:

> Hi,
>
> I am trying to tune nginx server.
> I want to restrict number of client connection per server and restrict
> bandwidth.
> I tried
> worker_connections 2;
> for max connections in nginx.conf file.
> but its connecting only after worker_connection value set to 7.
>
> my conf file look like below.
>
> user nginx;
> worker_processes auto;
> error_log /var/log/nginx/error.log;
> pid /run/nginx.pid;
>
> # Load dynamic modules. See /usr/share/nginx/README.dynamic.
> include /usr/share/nginx/modules/*.conf;
>
> events {
>     worker_connections 7;
> }
>
> thanks.
>
> Posted at Nginx Forum: https://forum.nginx.org/read.
> php?2,275276,275276#msg-275276
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20170704/fac97395/attachment.html>


More information about the nginx mailing list