Browse Source

Increase number of worker connections

Tor Hveem 12 years ago
parent
commit
8417d5bf6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      openresty/nginx.conf

+ 1 - 1
openresty/nginx.conf

@@ -3,7 +3,7 @@ pid        /tmp/nginx.pid;
 error_log /dev/null crit;
 #error_log /tmp/test.log error;
 events {
-    worker_connections  1024;
+    worker_connections  16384;
 }
 
 http {