0d68ad61f1da6c9b397db3f119599507670aafe7
[ansible.git] / roles / apache / templates / 000-default.conf
1 # redirect all undefined virtual hosts to {{ apache.default_host }}
2 <VirtualHost *:80>
3 {% if 'letsencrypt' in group_names %}
4     Redirect temp / https://{{ apache.default_host }}/
5 {% else %}
6     Redirect temp / http://{{ apache.default_host }}/
7 {% endif %}
8 </VirtualHost>
9 {% if 'letsencrypt' in group_names %}
10 <VirtualHost *:443>
11     Use SSL letsencrypt/live
12     Redirect temp / https://{{ apache.default_host }}/
13 </VirtualHost>
14 {% endif %}