nginx-formula/nginx/config.sls

34 lines
952 B
Plaintext
Raw Normal View History

# nginx.config
2014-05-19 19:22:51 +02:00
#
# Manages the main nginx server configuration file.
{%- set tplroot = tpldir.split('/')[0] %}
{%- from tplroot ~ '/map.jinja' import nginx, sls_block with context %}
{%- from tplroot ~ '/libtofs.jinja' import files_switch with context %}
2014-05-16 00:06:48 +02:00
2016-05-09 18:59:55 +02:00
{% if nginx.install_from_source %}
nginx_log_dir:
file.directory:
- name: /var/log/nginx
- user: {{ nginx.server.config.user }}
- group: {{ nginx.server.config.user }}
2016-05-09 18:59:55 +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 }}
- source:
{% if 'source_path' in nginx.server.config %}
- {{ nginx.server.config.source_path }}
{% endif %}
{{ files_switch(['nginx.conf'],
'nginx_config_file_managed'
)
}}
2014-05-16 00:06:48 +02:00
- template: jinja
{% if 'source_path' not in nginx.server.config %}
2014-05-16 00:06:48 +02:00
- context:
config: {{ nginx.server.config|json(sort_keys=False) }}
{% endif %}