Browse Source

Merge pull request #79 from bersace/systemd

Fix nginx config on systemd
susefix
Nitin Madhok 9 years ago
parent
commit
013a0e8406
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      nginx/templates/config.jinja

+ 2
- 0
nginx/templates/config.jinja View File

@@ -13,7 +13,9 @@ worker_rlimit_nofile {{ worker_rlimit_nofile }};
{% set error_log_level = nginx.get('error_log',{}).get('level', 'warn') -%}
error_log {{ ' '.join([error_log_location, error_log_level]) }};
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
{% if salt['test.provider']('service') != 'systemd' -%}
daemon {{ nginx.get('daemon', 'on') }};
{%- endif %}

events {
worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};

Loading…
Cancel
Save