set 'daemon on;' by default

This commit is contained in:
Kent Shultz 2014-05-29 09:58:02 -07:00
parent 418a8b942b
commit af46708a56

View File

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