15 lines
378 B
Plaintext
15 lines
378 B
Plaintext
|
# 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 }}
|
||
|
DocumentRoot {{ acme_webroot }}
|
||
|
<Directory "{{ acme_webroot }}">
|
||
|
Require all granted
|
||
|
AllowOverride All
|
||
|
Options MultiViews FollowSymlinks
|
||
|
</Directory>
|
||
|
</VirtualHost>
|