ansible/roles/redirect/templates/apache2-vhost.conf
Salt 728a6e4771 Add simple redirect role
And furnish that one, too
2020-02-11 04:16:57 -06:00

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>