Re: Limit number of connections to server

2017-04-04 Thread Payam Chychi
V. Bartenev > Sent: Tuesday, April 4, 2017 1:58 PM > To: nginx@nginx.org > Reply To: nginx@nginx.org > Subject: Re: Limit number of connections to server > > On Tuesday 04 April 2017 17:22:58 Kamil Gorlo wrote: > > Hi, > > > > is there a way to limit total number of

Re: Limit number of connections to server

2017-04-04 Thread lists
You would probably want to also limit the number of connections per IP address, else one IP could lock up the entire site.   Original Message   From: Valentin V. Bartenev Sent: Tuesday, April 4, 2017 1:58 PM To: nginx@nginx.org Reply To: nginx@nginx.org Subject: Re: Limit number of connections

Re: Limit number of connections to server

2017-04-04 Thread Valentin V. Bartenev
On Tuesday 04 April 2017 17:22:58 Kamil Gorlo wrote: > Hi, > > is there a way to limit total number of open connections per listening port > in Nginx? I know that there is limit_conn module but as far as I understand > it only works on "request" layer, which means connections are counted only > wh

Limit number of connections to server

2017-04-04 Thread Kamil Gorlo
Hi, is there a way to limit total number of open connections per listening port in Nginx? I know that there is limit_conn module but as far as I understand it only works on "request" layer, which means connections are counted only when request headers have been already read. I have problem when n

Re: CPU load monitoring / dynamically limit number of connections to server

2016-05-25 Thread ohenley
Thx gariac. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267003,267145#msg-267145 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: CPU load monitoring / dynamically limit number of connections to server

2016-05-21 Thread lists
enley Sent: Saturday, May 21, 2016 12:37 PM To: nginx@nginx.org Reply To: nginx@nginx.org Subject: Re: CPU load monitoring / dynamically limit number of connections to server Found it: https://www.scalyr.com/community/guides/how-to-monitor-nginx-the-essential-guide Posted at Nginx Forum: https://forum

Re: CPU load monitoring / dynamically limit number of connections to server

2016-05-21 Thread ohenley
Found it: https://www.scalyr.com/community/guides/how-to-monitor-nginx-the-essential-guide Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267003,267019#msg-267019 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listi

Re: CPU load monitoring / dynamically limit number of connections to server

2016-05-20 Thread lists
x Reply To: nginx@nginx.org Subject: Re: CPU load monitoring / dynamically limit number of connections to server http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html - not system load based though -- Anoop P Alias ___ nginx mailing

Re: CPU load monitoring / dynamically limit number of connections to server

2016-05-20 Thread Anoop Alias
http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html - not system load based though -- Anoop P Alias ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

CPU load monitoring / dynamically limit number of connections to server

2016-05-19 Thread ohenley
Hi to all, Is there a way to monitor the busyness of my dedicated server cpu cores and stop serving new connections passed a given cpu load threshold? Put another way, what is the standard approach/technique to dynamically limit the maximum number of connections my machine can cope with? Thank yo