From af46708a567c8ff83ebf2e325f7e97bdbcebfe5d Mon Sep 17 00:00:00 2001 From: Kent Shultz Date: Thu, 29 May 2014 09:58:02 -0700 Subject: [PATCH] set 'daemon on;' by default --- nginx/templates/config.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/templates/config.jinja b/nginx/templates/config.jinja index 693be56..d17fd77 100644 --- a/nginx/templates/config.jinja +++ b/nginx/templates/config.jinja @@ -6,7 +6,7 @@ worker_processes {{ nginx.get('worker_processes', 1) }}; error_log /var/log/nginx/error.fifo warn; pid {{ nginx.get('pid', '/var/run/nginx.pid') }}; -daemon {{ nginx.get('daemon', 'off') }}; +daemon {{ nginx.get('daemon', 'on') }}; events { worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};