-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php
49 lines (39 loc) · 1.1 KB
/
config.php
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
<?php
//include $_SERVER['DOCUMENT_ROOT'] . "/../password.php";
include "/srv/http/soc_lsucs/lan.lsucs.org.uk/password.php";
/**
* Base LanWebsite Library Directory
*/
$config['libdir'] = $_SERVER['DOCUMENT_ROOT']. '/lib/';
/**
* Database Settings
*/
/* Development
$config['database']['host'] = 'localhost';
$config['database']['user'] = 'dev_lanwebsite';
$config['database']['pass'] = $password;
$config['database']['db'] = 'dev_lanwebsite';
/**/
/* Production */
$config['database']['host'] = 'localhost';
$config['database']['user'] = 'lanwebsite';
$config['database']['pass'] = $password;
$config['database']['db'] = 'lanwebsite';
/**/
/**
* Default Controller location
*/
$config['controllerdir'] = '/public/controllers/';
/**
* Auth Mechanism
*/
$config['auth'] = 'LanWebsite_Auth_Lsucs';
/**
* UserManager
*/
$config['usermanager'] = 'LanWebsite_UserManager_Lsucs';
/**
* SEO-friendly URLs
*/
$config['seo_enabled'] = true;
?>