Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Subileau <github@kevinsubileau.fr>2016-03-28 00:08:37 +0300
committerKévin Subileau <github@kevinsubileau.fr>2016-03-28 00:25:05 +0300
commitaf7ef0a0c14d7c11f3fb483c3b930a02be933a2c (patch)
tree6b7b7511e87157e9d5539d6bf761a4e601153839
parentaf7997f920759677c8cf7c9ffe20ead30ae44471 (diff)
Whitelists EOT to be downloadable via apache webserver
fixes #9967
-rw-r--r--plugins/Installation/ServerFilesGenerator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Installation/ServerFilesGenerator.php b/plugins/Installation/ServerFilesGenerator.php
index 6009854544..927f403ccb 100644
--- a/plugins/Installation/ServerFilesGenerator.php
+++ b/plugins/Installation/ServerFilesGenerator.php
@@ -37,7 +37,7 @@ class ServerFilesGenerator
"</IfModule>\n\n" .
"# Allow to serve static files which are safe\n" .
- "<Files ~ \"\\.(gif|ico|jpg|png|svg|js|css|htm|html|swf|mp3|mp4|wav|ogg|avi|ttf)$\">\n" .
+ "<Files ~ \"\\.(gif|ico|jpg|png|svg|js|css|htm|html|swf|mp3|mp4|wav|ogg|avi|ttf|eot)$\">\n" .
$allow . "\n" .
"</Files>\n";