bernd commited on 2007-07-30 21:06:10
Zeige 1 geänderte Dateien mit 20 Einfügungen und 0 Löschungen.
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@578 87cf0b9e-d624-0410-a070-f6ee81989793
... | ... |
@@ -0,0 +1,20 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+global $config; |
|
4 |
+$config = array(); |
|
5 |
+ |
|
6 |
+$config['db_host'] = ':/var/run/mysqld/mysqld-sys.sock'; |
|
7 |
+$config['db_user'] = 'username'; |
|
8 |
+$config['db_pass'] = 'password'; |
|
9 |
+ |
|
10 |
+ |
|
11 |
+$config['modules'] = array("index", "domains", "imap", "mysql", "jabber", "vhosts", "register", "systemuser", "su"); |
|
12 |
+ |
|
13 |
+$config['cracklib_dict'] = 'inc/cracklib_dict'; |
|
14 |
+ |
|
15 |
+$config['enable_debug'] = true; |
|
16 |
+ |
|
17 |
+ |
|
18 |
+ini_set('error_reporting','On'); |
|
19 |
+ |
|
20 |
+?> |
|
0 | 21 |