add support for worker_rlimit_nofile
This commit is contained in:
parent
418a8b942b
commit
928882e401
@ -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') }};
|
||||
|
Loading…
Reference in New Issue
Block a user