11 lines
338 B
Django/Jinja
11 lines
338 B
Django/Jinja
-- Prosody VirtualHost configuration.
|
|
-- {{ ansible_managed }}
|
|
|
|
VirtualHost "{{ item.domain }}"
|
|
{% if item.enabled is defined %}
|
|
enabled = {{ item.enabled | bool | lower }}
|
|
{% endif %}
|
|
{% if item.http_host is defined %}
|
|
http_host = "{{ item.http_host }}"
|
|
{% endif %}
|
|
{% with cfg=item %}{% include "prosody.inc.j2" %}{% endwith %}
|