nginx-formula/nginx/ng/vhosts.sls

32 lines
840 B
Plaintext
Raw Normal View History

2014-05-16 00:06:48 +02:00
# nginx.ng.vhosts
#
# Manages virtual hosts and their relationship to the nginx service.
2014-05-19 19:22:51 +02:00
2014-05-16 00:06:48 +02:00
{% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}
{% from 'nginx/ng/vhosts_config.sls' import vhost_states with context %}
{% from 'nginx/ng/service.sls' import service_function with context %}
2014-05-21 06:50:50 +02:00
{% macro file_requisites(states) %}
{%- for state in states %}
- file: {{ state }}
{%- endfor -%}
{% endmacro %}
2014-05-16 00:06:48 +02:00
include:
- nginx.ng.service
- nginx.ng.vhosts_config
{% if vhost_states|length() > 0 %}
nginx_service_reload:
service.{{ service_function }}:
- name: {{ nginx.lookup.service }}
- reload: True
- use:
- service: nginx_service
- watch:
2014-05-21 06:50:50 +02:00
{{ file_requisites(vhost_states) }}
- require:
{{ file_requisites(vhost_states) }}
- service: nginx_service
2014-05-16 00:06:48 +02:00
{% endif %}