14 lines
313 B
ApacheConf
14 lines
313 B
ApacheConf
# 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>
|