diff options
author | Simon Rettberg | 2013-11-16 15:42:16 +0100 |
---|---|---|
committer | Simon Rettberg | 2013-11-16 15:42:16 +0100 |
commit | 633e43127c6d1a96d47587eed2739bdaff6c3d4f (patch) | |
tree | afe22b5cef77a5a054388d05f6a2c106dcb4d60b /config.php | |
parent | Add custom config.tgz upload functionality (diff) | |
download | slx-admin-633e43127c6d1a96d47587eed2739bdaff6c3d4f.tar.gz slx-admin-633e43127c6d1a96d47587eed2739bdaff6c3d4f.tar.xz slx-admin-633e43127c6d1a96d47587eed2739bdaff6c3d4f.zip |
Add minilinux download functionality and ipxe compilation scripts
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -4,7 +4,7 @@ define('CONFIG_DEBUG', true); define('CONFIG_SESSION_DIR', '/tmp/openslx'); -define('CONFIG_SESSION_TIMEOUT', 86400); +define('CONFIG_SESSION_TIMEOUT', 86400 * 3); //define('CONFIG_SQL_BACKEND', 'mysql'); //define('CONFIG_SQL_HOST', 'localhost'); @@ -13,8 +13,13 @@ define('CONFIG_SQL_USER', 'openslx'); define('CONFIG_SQL_PASS', 'geheim'); //define('CONFIG_SQL_DB', 'openslx'); -define('CONFIG_TGZ_LIST_DIR', '/tmp/configs'); -define('CONFIG_HTTP_DIR', '/tmp/active-config'); +define('CONFIG_TGZ_LIST_DIR', '/opt/openslx/configs'); -define('CONFIG_REMOTE_TGZ', 'http://127.0.0.1/fakeremote'); +define('CONFIG_REMOTE_TGZ', 'http://mltk.boot.openslx.org/tgz'); +define('CONFIG_REMOTE_ML', 'http://mltk.boot.openslx.org/update'); + +define('CONFIG_TFTP_DIR', '/srv/openslx/tftp'); +define('CONFIG_HTTP_DIR', '/srv/openslx/www/boot'); + +define('CONFIG_IPXE_DIR', '/opt/openslx/ipxe'); |