Browse Source

set 'daemon on;' by default

susefix
Kent Shultz 10 years ago
parent
commit
af46708a56
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      nginx/templates/config.jinja

+ 1
- 1
nginx/templates/config.jinja View File



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…
Cancel
Save