This commit is contained in:
岳松
2016-09-19 13:22:08 +08:00
parent 7d272e858a
commit 142f2596f8

View File

@@ -1,7 +1,7 @@
user nginx;
worker_processes 1;
worker_rlimit_nofile 51200;
worker_processes auto;
worker_rlimit_nofile 65535;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
@@ -9,7 +9,7 @@ pid /var/run/nginx.pid;
events {
use epoll;
worker_connections 51200;
worker_connections 65535;
multi_accept on;
}