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:
authorThomas Steur <tsteur@users.noreply.github.com>2019-10-10 22:43:37 +0300
committerGitHub <noreply@github.com>2019-10-10 22:43:37 +0300
commit2b18ed0a078cee2ec39109eeefcc5b316ea70901 (patch)
tree51c9dfab81c82d8dc91d98e9f373f1b501ba1e54 /plugins/Installation
parentadea7177499111d0c4396a9970130f8f759e9a6b (diff)
Use correct paths in server files generator (#14981)
* Use correct paths in server files generator * Update ServerFilesGenerator.php * Update ServerFilesGenerator.php
Diffstat (limited to 'plugins/Installation')
-rw-r--r--plugins/Installation/ServerFilesGenerator.php17
1 files changed, 12 insertions, 5 deletions
diff --git a/plugins/Installation/ServerFilesGenerator.php b/plugins/Installation/ServerFilesGenerator.php
index b9df620ad8..f68f653504 100644
--- a/plugins/Installation/ServerFilesGenerator.php
+++ b/plugins/Installation/ServerFilesGenerator.php
@@ -8,6 +8,7 @@
*/
namespace Piwik\Plugins\Installation;
+use Piwik\Container\StaticContainer;
use Piwik\Filesystem;
use Piwik\SettingsServer;
@@ -72,13 +73,19 @@ Header set Cache-Control \"Cache-Control: private, no-cache, no-store\"
// deny access to these folders
$directoriesToProtect = array(
- '/config' => $denyAll,
- '/core' => $denyAll,
- '/lang' => $denyAll,
- '/tmp' => $denyAll,
+ PIWIK_USER_PATH . '/config' => $denyAll,
+ PIWIK_INCLUDE_PATH. '/core' => $denyAll,
+ PIWIK_INCLUDE_PATH . '/lang' => $denyAll,
+ StaticContainer::get('path.tmp') => $denyAll,
);
+
+ if (!empty($GLOBALS['CONFIG_INI_PATH_RESOLVER']) && is_callable($GLOBALS['CONFIG_INI_PATH_RESOLVER'])) {
+ $file = call_user_func($GLOBALS['CONFIG_INI_PATH_RESOLVER']);
+ $directoriesToProtect[dirname($file)] = $denyAll;
+ }
+
foreach ($directoriesToProtect as $directoryToProtect => $content) {
- self::createHtAccess(PIWIK_INCLUDE_PATH . $directoryToProtect, $overwrite = true, $content);
+ self::createHtAccess($directoryToProtect, $overwrite = true, $content);
}
}