Explorar el Código

set 'daemon on;' by default

tags/v0.55.0
Kent Shultz hace 10 años
padre
commit
af46708a56
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      nginx/templates/config.jinja

+ 1
- 1
nginx/templates/config.jinja Ver fichero

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

Cargando…
Cancelar
Guardar