2014-05-28 01:55:49 +02:00
|
|
|
# nginx.ng.config
|
2014-05-19 19:22:51 +02:00
|
|
|
#
|
|
|
|
# Manages the main nginx server configuration file.
|
|
|
|
|
2014-05-16 00:06:48 +02:00
|
|
|
{% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}
|
|
|
|
|
2016-05-09 18:59:55 +02:00
|
|
|
{% if nginx.install_from_source %}
|
2016-05-10 13:06:42 +02:00
|
|
|
nginx_log_dir:
|
2016-05-10 13:00:18 +02:00
|
|
|
file.directory:
|
|
|
|
- name: /var/log/nginx
|
2016-05-10 13:06:42 +02:00
|
|
|
- user: {{ nginx.server.config.user }}
|
|
|
|
- group: {{ nginx.server.config.user }}
|
2016-05-09 18:59:55 +02:00
|
|
|
{% endif %}
|
|
|
|
|
2017-08-31 13:22:55 +02:00
|
|
|
{% if 'source_path' in nginx.server.config %}
|
2017-08-31 13:36:10 +02:00
|
|
|
{% set source_path = nginx.server.config.source_path %}
|
2017-12-12 21:10:51 +01:00
|
|
|
{% else %}
|
|
|
|
{% set source_path = 'salt://nginx/ng/files/nginx.conf' %}
|
2017-08-30 19:48:44 +02:00
|
|
|
{% endif %}
|
2014-05-16 00:06:48 +02:00
|
|
|
nginx_config:
|
|
|
|
file.managed:
|
|
|
|
{{ sls_block(nginx.server.opts) }}
|
|
|
|
- name: {{ nginx.lookup.conf_file }}
|
2017-08-30 19:48:44 +02:00
|
|
|
- source: {{ source_path }}
|
2014-05-16 00:06:48 +02:00
|
|
|
- template: jinja
|
2017-08-31 13:22:55 +02:00
|
|
|
{% if 'source_path' not in nginx.server.config %}
|
2014-05-16 00:06:48 +02:00
|
|
|
- context:
|
2017-03-23 18:54:16 +01:00
|
|
|
config: {{ nginx.server.config|json(sort_keys=False) }}
|
2017-08-30 19:48:44 +02:00
|
|
|
{% endif %}
|