X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/227289a8fa6093f468290d4b3b68f6948f1a2b14..abf08ecdb046202de8b5abf0392b4b76a5d0f89a:/data/config.default.php diff --git a/data/config.default.php b/data/config.default.php index 22bbc4a..5b56fc7 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -2,15 +2,21 @@ $pharFile = \Phar::running(); if ($pharFile == '') { $phorkieDir = __DIR__ . '/../'; + $wwwDir = $phorkieDir . 'www/'; } else { //remove phar:// from the path $phorkieDir = dirname(substr($pharFile, 7)) . '/'; + $wwwDir = $phorkieDir; } $GLOBALS['phorkie']['cfg'] = array( 'debug' => false, - 'gitdir' => $phorkieDir . 'repos/git/', - 'workdir' => $phorkieDir . 'repos/work/', + 'git' => array( + 'public' => '%BASEURL%' . 'repos/git/', + 'private' => null, + ), + 'gitdir' => $wwwDir . 'repos/git/', + 'workdir' => $wwwDir . 'repos/work/', 'tpl' => __DIR__ . '/templates/', 'baseurl' => null, 'avatars' => true, @@ -20,7 +26,6 @@ $GLOBALS['phorkie']['cfg'] = array( 'topbar' => '', 'setupcheck' => true, 'elasticsearch' => null, - 'geshi' => 'MediaWiki/geshi/geshi/geshi.php', 'index' => 'new',//"new" or "list" 'perPage' => 10, 'defaultListPage' => 'last',//a number or "last"