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) }};