make letsencrypt optional for apache/postfix
[ansible.git] / roles / apache / templates / 000-default.conf
index 8865a0ac29fb5f088210cf38e845f50bb146e02f..23f6f5e4ce817ed2256e00ee7ef39ab0afd96746 100644 (file)
@@ -2,7 +2,9 @@
 <VirtualHost *:80>
     Redirect temp / https://{{ apache.default_host }}/
 </VirtualHost>
+{% if 'letsencrypt' in group_names %}
 <VirtualHost *:443>
     Use SSL letsencrypt/live
     Redirect temp / https://{{ apache.default_host }}/
 </VirtualHost>
+{% endif %}