summaryrefslogtreecommitdiffstats
path: root/config.php.example
blob: 6b291cd1c77c309278b674271a2fc29ba5c2a295 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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;charset=utf8mb4');
define('CONFIG_SQL_USER', 'openslx');
define('CONFIG_SQL_PASS', '%MYSQL_OPENSLX_PASS%');

define('CONFIG_TM_PASSWORD', '%TM_OPENSLX_PASS%');

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

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');

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

define('CONFIG_REPORTING_URL', 'https://bwlp-masterserver.ruf.uni-freiburg.de/rpc/');

define('CONFIG_BIOS_URL', 'https://bwlp-masterserver.ruf.uni-freiburg.de/bios/list.json');

define('CONFIG_PRODUCT_NAME', 'OpenSLX');
define('CONFIG_PRODUCT_NAME_LONG', 'OpenSLX Admin');

date_default_timezone_set('Europe/Berlin');

// 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', 'adduser', 'permissionmanager', 'locationinfo'
	),
	'main.settings-client' => array(
		'sysconfig', 'baseconfig', 'minilinux'
	),
	'main.settings-server' => array(
		'serversetup', 'vmstore', 'webinterface', 'backup', 'dnbd3', 'rebootcontrol'
	),
	'main.status' => array(
		'systemstatus', 'eventlog', 'syslog', 'statistics', 'statistics_reporting'
	),
	'main.etc' => array(
		'runmode', 'translation'
	)
);