projects
/
ansible.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
23f6f5e4ce817ed2256e00ee7ef39ab0afd96746
[ansible.git]
/
roles
/
apache
/
templates
/
000-default.conf
1
# redirect all undefined virtual hosts to {{ apache.default_host }}
2
<VirtualHost *:80>
3
Redirect temp / https://{{ apache.default_host }}/
4
</VirtualHost>
5
{% if 'letsencrypt' in group_names %}
6
<VirtualHost *:443>
7
Use SSL letsencrypt/live
8
Redirect temp / https://{{ apache.default_host }}/
9
</VirtualHost>
10
{% endif %}