13 lines
275 B
ApacheConf
13 lines
275 B
ApacheConf
# 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>
|