16 lines
325 B
Text
16 lines
325 B
Text
<Directory "/var/www/html/artboard">
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride 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>
|