support .conf-iguration files
[phorkie.git] / data / config.default.php
index 3b5066dfc5ac094f6f4ffcded08ce9064d523ca0..d603622f0cf4207279d177f4915fc2016ee65016 100644 (file)
@@ -1,19 +1,34 @@
 <?php
+$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'        => __DIR__ . '/../repos/git/',
-    'workdir'       => __DIR__ . '/../repos/work/',
+    'git'           => array(
+        'public'    => '%BASEURL%' . 'repos/git/',
+        'private'   => null,
+    ),
+    'gitdir'        => $wwwDir . 'repos/git/',
+    'workdir'       => $wwwDir . 'repos/work/',
     'tpl'           => __DIR__ . '/templates/',
-    'baseurl'       => '/',
+    'baseurl'       => null,
+    'avatars'       => true,
     'css'           => '',
-    'iconpng'       => '',
+    'iconpng'       => '',//phorkie browser icon (favicon)
     'title'         => 'phorkie',
     'topbar'        => '',
     'setupcheck'    => true,
     'elasticsearch' => null,
-    'geshi'         => 'MediaWiki/geshi/geshi/geshi.php',
     'index'         => 'new',//"new" or "list"
     'perPage'       => 10,
+    'defaultListPage' => 'last',//a number or "last"
     'notificator'   => array(
         /* send out pingback/webmentions when a remote paste is forked */
         'linkback'  => true,
@@ -41,6 +56,12 @@ $GLOBALS['phorkie']['tools'] = array(
  * Key is the file extension
  */
 $GLOBALS['phorkie']['languages'] = array(
+    'conf' => array(
+        'title' => 'Configuration',
+        'mime'  => 'text/ini',
+        'geshi' => 'ini',
+        'show'  => false
+    ),
     'css' => array(
         'title' => 'CSS',
         'mime'  => 'text/css',