Ver código fonte

add support for worker_rlimit_nofile

susefix
Kent Shultz 10 anos atrás
pai
commit
928882e401
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      nginx/templates/config.jinja

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

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

Carregando…
Cancelar
Salvar