worker_connections fine tuning

This commit is contained in:
Szekeres Bálint
2018-06-11 20:29:09 +02:00
parent dfa50392f7
commit 3712ab8045
2 changed files with 3 additions and 2 deletions

View File

@@ -1,11 +1,11 @@
user {{ data.user }};
pid {{ data.pid}};
worker_processes {{ data.worker_processes }};
worker_rlimit_nofile 409600;
worker_rlimit_nofile 65535;
events {
worker_connections 4096;
multi_accept on;
worker_connections 65535;
}
http {