10 lines
357 B
Plaintext
10 lines
357 B
Plaintext
|
worker_processes {{ env.NGX_WORKER_PROCESSES }};
|
||
|
{%- if env.NGX_WORKER_CPU_AFFINITY %}
|
||
|
worker_cpu_affinity {{ env.NGX_WORKER_CPU_AFFINITY }};
|
||
|
{%- endif %}
|
||
|
{%- if env.NGX_WORKER_PRIORITY %}
|
||
|
worker_priority {{ env.NGX_WORKER_PRIORITY }};
|
||
|
{%- endif %}
|
||
|
{%- if env.NGX_WORKER_RLIMIT_NOFILE %}
|
||
|
worker_rlimit_nofile {{ env.NGX_WORKER_RLIMIT_NOFILE }};
|
||
|
{%- endif %}
|