Explorar el Código

add support for worker_rlimit_nofile

susefix
Kent Shultz hace 10 años
padre
commit
928882e401
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      nginx/templates/config.jinja

+ 4
- 0
nginx/templates/config.jinja Ver fichero

@@ -3,6 +3,10 @@
{% set group = nginx.get('group', 'www-data') -%}
user {{ user }} {{ group }};
worker_processes {{ nginx.get('worker_processes', 1) }};
{% set worker_rlimit_nofile = nginx.get('worker_rlimit_nofile', '') %}
{% if worker_rlimit_nofile %}
worker_rlimit_nofile {{ worker_rlimit_nofile }};
{% endif %}

error_log /var/log/nginx/error.fifo warn;
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};

Cargando…
Cancelar
Guardar