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

14 lines
313 B
Plaintext
Raw Normal View History

# Configuration for {{ dokuwiki_url }}
# vim:ft=apache:
# Website configuration
<VirtualHost *:80>
ServerName {{ dokuwiki_url }}
DocumentRoot {{ dokuwiki_webroot }}
<Directory "{{ dokuwiki_webroot }}">
Require all granted
AllowOverride All
Options MultiViews FollowSymlinks
</Directory>
</VirtualHost>