diff options
author | Simon Rettberg | 2022-05-11 14:18:29 +0200 |
---|---|---|
committer | Simon Rettberg | 2022-05-11 14:18:29 +0200 |
commit | 1c98ffcb87097425a87052fac64803076c8b1332 (patch) | |
tree | cf0c071cf0ec97c202434a2afab9ad93571b0232 | |
parent | [SSPS] Adapt to changed iPXE bwlp config (diff) | |
download | setup-scripts-1c98ffcb87097425a87052fac64803076c8b1332.tar.gz setup-scripts-1c98ffcb87097425a87052fac64803076c8b1332.tar.xz setup-scripts-1c98ffcb87097425a87052fac64803076c8b1332.zip |
[SSPS] slx-admin: Set session length to one week, set passthrough cat
-rw-r--r-- | satellit_installer/static_files/slxadmin/srv/openslx/www/slx-admin/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/satellit_installer/static_files/slxadmin/srv/openslx/www/slx-admin/config.php b/satellit_installer/static_files/slxadmin/srv/openslx/www/slx-admin/config.php index db62372..8b637c0 100644 --- a/satellit_installer/static_files/slxadmin/srv/openslx/www/slx-admin/config.php +++ b/satellit_installer/static_files/slxadmin/srv/openslx/www/slx-admin/config.php @@ -4,7 +4,7 @@ define('CONFIG_DEBUG', false); define('CONFIG_SESSION_DIR', '/tmp/openslx'); -define('CONFIG_SESSION_TIMEOUT', 86400 * 3); +define('CONFIG_SESSION_TIMEOUT', 86400 * 7); // Put your mysql credentials here define('CONFIG_SQL_DSN', 'mysql:dbname=openslx;host=localhost;charset=utf8mb4'); @@ -46,7 +46,7 @@ $MENU_CAT_OVERRIDE = array( 'news', 'locations', 'exams', 'dozmod', 'adduser', 'permissionmanager', 'locationinfo' ), 'main.settings-client' => array( - 'sysconfig', 'baseconfig', 'minilinux' + 'sysconfig', 'baseconfig', 'minilinux', 'remoteaccess' ), 'main.settings-server' => array( 'serversetup', 'vmstore', 'webinterface', 'backup', 'dnbd3', 'rebootcontrol' |