2020-02-20 04:19:03 -06:00
|
|
|
# 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 }}">
|
2020-02-20 04:19:03 -06:00
|
|
|
Require all granted
|
|
|
|
AllowOverride All
|
|
|
|
Options MultiViews FollowSymlinks
|
|
|
|
</Directory>
|
|
|
|
</VirtualHost>
|