ansible/roles/https/templates/apache2-vhost.conf

15 lines
378 B
Plaintext
Raw Normal View History

# TEMPORARY configuration for {{ website_url }}
# If this file doesn't disappear quickly, there's a HUGE PROBLEM
# vim:ft=apache:
# Website configuration
<VirtualHost *:80>
ServerName {{ website_url }}
2020-08-07 06:27:17 -05:00
DocumentRoot {{ acme.webroot }}
<Directory "{{ acme.webroot }}">
Require all granted
AllowOverride All
Options MultiViews FollowSymlinks
</Directory>
</VirtualHost>