Fix nginx config on systemd
This commit is contained in:
parent
3cdf007cec
commit
03f73add16
@ -13,7 +13,9 @@ worker_rlimit_nofile {{ worker_rlimit_nofile }};
|
|||||||
{% set error_log_level = nginx.get('error_log',{}).get('level', 'warn') -%}
|
{% set error_log_level = nginx.get('error_log',{}).get('level', 'warn') -%}
|
||||||
error_log {{ ' '.join([error_log_location, error_log_level]) }};
|
error_log {{ ' '.join([error_log_location, error_log_level]) }};
|
||||||
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
|
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
|
||||||
|
{% if salt['test.provider']('service') != 'systemd' -%}
|
||||||
daemon {{ nginx.get('daemon', 'on') }};
|
daemon {{ nginx.get('daemon', 'on') }};
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
|
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
|
||||||
|
Loading…
Reference in New Issue
Block a user