new apache config for wiki

This commit is contained in:
Kevin Fenzi 2016-09-12 23:33:24 +00:00
parent 9faaf0c8e0
commit 41e5650d32

View file

@ -7,5 +7,14 @@ Alias /{{ wikipath }} /srv/web/{{ wikiname }}-wiki/index.php
<Directory /srv/web/{{ wikiname }}-wiki>
Options SymLinksIfOwnerMatch
AllowOverride None
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order allow,deny
Allow from all
</IfModule>
</Directory>