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> |
<IfModule mod_authz_core.c> |
||||||
Require all denied |
Require all denied |
||||||
|
# pChart generated files should be allowed |
||||||
|
<FilesMatch "^[0-9a-f]+$"> |
||||||
|
require all granted |
||||||
|
</FilesMatch> |
||||||
</IfModule> |
</IfModule> |
||||||
<IfModule !mod_authz_core.c> |
<IfModule !mod_authz_core.c> |
||||||
Order deny,allow |
Order deny,allow |
||||||
Deny from all |
Deny from all |
||||||
|
# pChart generated files should be allowed |
||||||
|
<FilesMatch "^[0-9a-f]+$"> |
||||||
|
order allow,deny |
||||||
|
allow from all |
||||||
|
</FilesMatch> |
||||||
</IfModule> |
</IfModule> |
||||||
# pChart generated files should be allowed |
|
||||||
<FilesMatch "^[0-9a-f]+$"> |
|
||||||
order allow,deny |
|
||||||
allow from all |
|
||||||
</FilesMatch> |
|
||||||
php_flag engine off |
php_flag engine off |
Loading…
Reference in new issue