forked from LSUCS/LAN-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
38 lines (30 loc) · 827 Bytes
/
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
<?php
include "/home/soc_lsucs/lan.lsucs.org.uk/password.php";
/**
* Base LanWebsite Library Directory
*/
$config['libdir'] = "/home/soc_lsucs/lan.lsucs.org.uk/htdocs/lib/";
/**
* Database Settings
*/
$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;
?>