Parcourir la source

set 'daemon on;' by default

tags/v0.55.0
Kent Shultz il y a 10 ans
Parent
révision
7f6b7841c3
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      nginx/templates/config.jinja

+ 1
- 1
nginx/templates/config.jinja Voir le fichier

@@ -10,7 +10,7 @@ worker_rlimit_nofile {{ worker_rlimit_nofile }};

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

Chargement…
Annuler
Enregistrer