apache-formula/apache/vhosts/standard.sls

54 lines
1.4 KiB
Plaintext
Raw Normal View History

{% from "apache/map.jinja" import apache with context %}
2013-08-28 00:27:01 +02:00
include:
- apache
{% for id, site in salt['pillar.get']('apache:sites', {}).items() %}
2015-06-19 22:55:30 +02:00
{% set documentroot = site.get('DocumentRoot', '{0}/{1}'.format(apache.wwwdir, id)) %}
2013-08-28 00:27:01 +02:00
{{ id }}:
file:
- managed
- name: {{ apache.vhostdir }}/{{ id }}{{ apache.confext }}
2013-08-28 00:27:01 +02:00
- source: {{ site.get('template_file', 'salt://apache/vhosts/standard.tmpl') }}
- template: {{ site.get('template_engine', 'jinja') }}
- context:
id: {{ id|json }}
site: {{ site|json }}
map: {{ apache|json }}
- require:
- pkg: apache
- watch_in:
- module: apache-reload
{% if site.get('DocumentRoot') != False %}
{{ id }}-documentroot:
file.directory:
- unless: test -d {{ documentroot }}
- name: {{ documentroot }}
- makedirs: True
{% endif %}
2013-08-28 00:27:01 +02:00
{% if grains.os_family == 'Debian' %}
{% if site.get('enabled') %}
a2ensite {{ id }}{{ apache.confext }}:
2013-08-28 00:27:01 +02:00
cmd:
- run
- unless: test -f /etc/apache2/sites-enabled/{{ id }}{{ apache.confext }}
2013-08-28 00:27:01 +02:00
- require:
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
- watch_in:
- module: apache-reload
{% else %}
a2dissite {{ id }}{{ apache.confext }}:
cmd:
- run
- require:
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
- watch_in:
- module: apache-reload
2013-08-28 00:27:01 +02:00
{% endif %}
2015-08-25 07:58:22 +02:00
{% endif %}
2013-08-28 00:27:01 +02:00
{% endfor %}