summaryrefslogblamecommitdiffstats
path: root/config.php.example
blob: 67a45d1808647c80e8126f3c08c641171bc30d29 (plain) (tree)
1
2
3
4
5
6
7
8
9

     
                                                                     
                              
 
                                             
                                            
 
                                  

                                                                
                                                  
                                                                                   
                                      
 
                                                      
 
                                                                                              




                                                   
 
                                                 
 
                                                         
 
                                     

                                                     
 

















                                                                       
<?php

// This might leak sensitive information. Never enable in production!
define('CONFIG_DEBUG', false);

define('CONFIG_SESSION_DIR', '/tmp/openslx');
define('CONFIG_SESSION_TIMEOUT', 86400 * 3);

// Put your mysql credentials here
define('CONFIG_SQL_DSN', 'mysql:dbname=openslx;host=localhost');
define('CONFIG_SQL_USER', 'openslx');
define('CONFIG_SQL_PASS', '%MYSQL_OPENSLX_PASS%');
// Set this to true if you mysql server doesn't default to UTF-8 on new connections
define('CONFIG_SQL_FORCE_UTF8', true);

define('CONFIG_TGZ_LIST_DIR', '/opt/openslx/configs');

define('CONFIG_REMOTE_ML',  'https://bwlp-masterserver.ruf.uni-freiburg.de/minilinux/sat_02');

define('CONFIG_TFTP_DIR', '/srv/openslx/tftp');
define('CONFIG_HTTP_DIR', '/srv/openslx/www/boot');

define('CONFIG_IPXE_DIR', '/opt/openslx/ipxe');

define('CONFIG_VMSTORE_DIR', '/srv/openslx/nfs');

define('CONFIG_PROXY_CONF', '/opt/openslx/proxy/config');

/* for the dozmod API proxy cache */ 
define('CONFIG_DOZMOD_URL', 'http://127.0.0.1:9080');
define('CONFIG_DOZMOD_EXPIRE', 60);

// Sort order for menu
// Optional - if missing, will be sorted by module id (internal name)
// Here it is also possible to assign a module to a different category,
// overriding the config.json entry
$MENU_CAT_OVERRIDE = array(
	'main.content' => array(
		'news', 'locations', 'exams', 'dozmod', 'translation'
	),
	'main.settings-client' => array(
		'sysconfig', 'baseconfig', 'minilinux'
	),
	'main.settings-server' => array(
		'serversetup', 'vmstore', 'webinterface', 'backup'
	),
	'main.status' => array(
		'systemstatus', 'eventlog', 'syslog', 'statistics'
	)
);