Tracking: Fix issue displaying the pChart-generated charts due to Apache 2.4 syntax change - refs #5393
parent
2a47d07420
commit
524522867b
@ -1,13 +1,19 @@ |
||||
<IfModule mod_authz_core.c> |
||||
Require all denied |
||||
# pChart generated files should be allowed |
||||
<FilesMatch "^[0-9a-f]+$"> |
||||
require all granted |
||||
</FilesMatch> |
||||
</IfModule> |
||||
<IfModule !mod_authz_core.c> |
||||
Order deny,allow |
||||
Deny from all |
||||
</IfModule> |
||||
# pChart generated files should be allowed |
||||
<FilesMatch "^[0-9a-f]+$"> |
||||
order allow,deny |
||||
allow from all |
||||
</FilesMatch> |
||||
</IfModule> |
||||
|
||||
|
||||
php_flag engine off |
Loading…
Reference in new issue