From 0886c8886240bbf7b6c760c2cab9310c7d49192e Mon Sep 17 00:00:00 2001 From: thefosk Date: Sat, 25 Apr 2015 17:15:30 -0700 Subject: [PATCH] fixing test --- spec/unit/statics_spec.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/unit/statics_spec.lua b/spec/unit/statics_spec.lua index ada6c31f6229..f84b21abbbfb 100644 --- a/spec/unit/statics_spec.lua +++ b/spec/unit/statics_spec.lua @@ -72,19 +72,19 @@ nginx_plus_status: false cache: expiration: 5 # in seconds +# Nginx configuration nginx: | worker_processes auto; error_log logs/error.log info; daemon on; - # Set "worker_rlimit_nofile" to a high value - # worker_rlimit_nofile 65536; + worker_rlimit_nofile {{auto_worker_rlimit_nofile}}; env KONG_CONF; events { - # Set "worker_connections" to a high value - worker_connections 1024; + worker_connections {{auto_worker_connections}}; + multi_accept on; } http {