bbc3bcac38ffcf87fb8335c24737c562ccabc458
bernd Beispiel-Config

bernd authored 16 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Beispiel-Config

bernd authored 16 years ago

16) 
17) global $config;
18) $config = array();
19) 
schokokeks.org web services Ermögliche Socket-Angabe fü...

schokokeks.org web services authored 10 years ago

20) // either...
21) $config['db_socket'] = '/var/run/mysqld/mysqld-sys.sock';
22) // ... or
23) $config['db_host'] = '10.8.0.1';
24) $config['db_port'] = 3307;
25) // (socket is preferred if both are defined)
26) 
bernd Beispiel-Config

bernd authored 16 years ago

27) $config['db_user'] = 'username';
28) $config['db_pass'] = 'password';
29) 
30) 
31) $config['modules'] = array("index", "domains", "imap", "mysql", "jabber", "vhosts", "register", "systemuser", "su");
32) 
bernd cracklib ausschaltbar machen

bernd authored 16 years ago

33) $config['use_cracklib'] = true;
bernd Beispiel-Config

bernd authored 16 years ago

34) $config['cracklib_dict'] = 'inc/cracklib_dict';
35) 
36) $config['enable_debug'] = true;
bernd Logger mit Logleveln

bernd authored 14 years ago

37) $config['logging'] = LOG_ERR;
bernd Beispiel-Config

bernd authored 16 years ago

38) 
39) 
bernd MIME-Type konfigurierbar

bernd authored 16 years ago

40) $config['mime_type'] = 'application/xhtml+xml';
41) 
bernd Session-Name aus einer Conf...

bernd authored 13 years ago

42) $config['session_name'] = 'CONFIG_SCHOKOKEKS_ORG';
bernd Neue Config-Variable für theme

bernd authored 13 years ago

43) $config['theme'] = 'default';
Bernd Wurst Configurable jQuery-path

Bernd Wurst authored 11 years ago

44) $config['jquery_ui_path'] = 'https://source.schokokeks.org/external/jquery/jquery-ui-1.10.0/';
bernd MIME-Type konfigurierbar

bernd authored 16 years ago

45) 
schokokeks.org web services Ermögliche Socket-Angabe fü...

schokokeks.org web services authored 10 years ago

46) ini_set('display_errors','On');