summaryrefslogtreecommitdiffstats
path: root/config.php.example
diff options
context:
space:
mode:
authorSimon Rettberg2016-06-08 18:34:07 +0200
committerSimon Rettberg2016-06-08 18:34:07 +0200
commitb9283754a22d24a645bb7a77a2e4ebad45a59d85 (patch)
tree0b68e4df1c815a900d35327f47ef761b814a8cb5 /config.php.example
parent[install] Implement install scripts for most modules (diff)
parentressource -> resource :-) (diff)
downloadslx-admin-b9283754a22d24a645bb7a77a2e4ebad45a59d85.tar.gz
slx-admin-b9283754a22d24a645bb7a77a2e4ebad45a59d85.tar.xz
slx-admin-b9283754a22d24a645bb7a77a2e4ebad45a59d85.zip
Merge branch 'modularization' of dnbd3:openslx-ng/slx-admin into modularization
Diffstat (limited to 'config.php.example')
-rw-r--r--config.php.example5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.php.example b/config.php.example
index 6674ef61..14978897 100644
--- a/config.php.example
+++ b/config.php.example
@@ -26,10 +26,13 @@ define('CONFIG_VMSTORE_DIR', '/srv/openslx/nfs');
define('CONFIG_PROXY_CONF', '/opt/openslx/proxy/config');
+/* for the dozmod API proxy cache */
+define('CONFIG_DOZMOD_EXPIRE', 60*60); // 1 Minute
+
// Sort order for menu - optional, if missing, order will be alphabetically
$MENU_CAT_SORT_ORDER = array('main.content' => 0, 'main.settings-client' => 1, 'main.settings-server' => 2, 'main.status' => 3, 'main.users' => 4);
$MENU_SETTING_SORT_ORDER = array(
'news' => 0, 'sysconfig' => 1, 'baseconfig' => 2, 'locations' => 3, // main.content
'serversetup' => 0, 'internetaccess' => 1, 'vmstore' => 2, 'webinterface' => 3, 'backup' => 4, // main.settings
'systemstatus' => 0, 'eventlog' => 1, 'syslog' => 2, 'statistics' => 3 // main.status
-); \ No newline at end of file
+);