Make artboard httpd 2.4 compliant.

This commit is contained in:
Kevin Fenzi 2015-07-14 19:07:29 +00:00
parent ec2eb819fc
commit 1710fea8b8

View file

@ -3,7 +3,14 @@
AllowOverride All
Order allow,deny
Allow from all
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order deny,allow
Allow from all
</IfModule>
</Directory>