Browse Source

Nginx double worker connections (#4856)

Joan Miquel 6 years ago
parent
commit
e5664c43c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/C/nginx/nginx.conf

+ 1 - 1
frameworks/C/nginx/nginx.conf

@@ -7,7 +7,7 @@ timer_resolution 1000ms;
 daemon off;
 
 events {
-    worker_connections 32768;
+    worker_connections 65536;
 	multi_accept off; #default
 }