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

13 lines
275 B
Plaintext
Raw Normal View History

# 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>