Nginx Tuning
    guruprasads 
    nginx-forum at forum.nginx.org
       
    Tue Jul  4 08:01:44 UTC 2017
    
    
  
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
    
    
More information about the nginx
mailing list