Hello,
I have a website with heavy traffic hosted on a dedicated server with 12 cpu Core
I did try to optimize Nginx conf to handle the traffic, but my modifications are not saved.
I made the changes to nginx.conf file in /usr/local/directadmin/custombuild/configure/nginx/conf/
	
	
	
		
When I check with this command : ulimit -n
I see 1024, not 6144
Is that normal?
I did also edit nginx-defaults.conf in etc/nginx/ but same result.
Thank you for you help.
				
			I have a website with heavy traffic hosted on a dedicated server with 12 cpu Core
I did try to optimize Nginx conf to handle the traffic, but my modifications are not saved.
I made the changes to nginx.conf file in /usr/local/directadmin/custombuild/configure/nginx/conf/
		Code:
	
	worker_processes  auto;
events {
    worker_connections 6144;
    multi_accept on;
}
access_log off;When I check with this command : ulimit -n
I see 1024, not 6144
Is that normal?
I did also edit nginx-defaults.conf in etc/nginx/ but same result.
Thank you for you help.
