]> git.ralfj.de Git - ansible.git/blob - roles/apache/templates/000-default.conf
8865a0ac29fb5f088210cf38e845f50bb146e02f
[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 <VirtualHost *:443>
6     Use SSL letsencrypt/live
7     Redirect temp / https://{{ apache.default_host }}/
8 </VirtualHost>