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