Merge pull request #23 from the-control-group/master
set 'daemon on;' by default
This commit is contained in:
commit
c8413788b0
@ -6,7 +6,7 @@ worker_processes {{ nginx.get('worker_processes', 1) }};
|
|||||||
|
|
||||||
error_log /var/log/nginx/error.fifo warn;
|
error_log /var/log/nginx/error.fifo warn;
|
||||||
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
|
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
|
||||||
daemon {{ nginx.get('daemon', 'off') }};
|
daemon {{ nginx.get('daemon', 'on') }};
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
|
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
|
||||||
|
Loading…
Reference in New Issue
Block a user