13 lines
275 B
Plaintext
13 lines
275 B
Plaintext
|
# vim:ft=apache:
|
||
|
|
||
|
# Website configuration
|
||
|
<VirtualHost *:80>
|
||
|
ServerName {{ redirect_from }}
|
||
|
DocumentRoot {{ redirect_webroot }}
|
||
|
<Directory "{{ redirect_webroot }}">
|
||
|
Require all granted
|
||
|
AllowOverride All
|
||
|
Options MultiViews FollowSymlinks
|
||
|
</Directory>
|
||
|
</VirtualHost>
|