3ef995c2108fe77d22c0b556fb9717cb848bc48f
bernd Beispiel-Config

bernd authored 18 years ago

1) <?php
Hanno Böck Add newlines before comment...

Hanno Böck authored 10 months ago

2) 
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 13 years ago

3) /*
4) This file belongs to the Webinterface of schokokeks.org Hosting
5) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 3 years ago

6) Written by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 13 years ago

7)   Bernd Wurst <bernd@schokokeks.org>
8)   Hanno Böck <hanno@schokokeks.org>
9) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 3 years ago

10) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 13 years ago

11) 
12) 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.
13) */
bernd Beispiel-Config

bernd authored 18 years ago

14) 
15) global $config;
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 4 years ago

16) $config = [];
bernd Beispiel-Config

bernd authored 18 years ago

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

schokokeks.org web services authored 11 years ago

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

bernd authored 18 years ago

25) $config['db_user'] = 'username';
26) $config['db_pass'] = 'password';
27) 
28) 
Bernd Wurst merge passkeys feature

Bernd Wurst authored 2 years ago

29) $config['modules'] = ["index", "domains", "imap", "mysql", "jabber", "vhosts", "register", "systemuser", "su", "loginsecurity"];
bernd Beispiel-Config

bernd authored 18 years ago

30) 
31) $config['enable_debug'] = true;
bernd Logger mit Logleveln

bernd authored 16 years ago

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

bernd authored 18 years ago

33) 
34) 
Bernd Wurst Referenzen auf cracklib ent...

Bernd Wurst authored 7 years ago

35) $config['mime_type'] = 'text/html';
bernd MIME-Type konfigurierbar

bernd authored 18 years ago

36) 
bernd Neue Config-Variable für theme

bernd authored 15 years ago

37) $config['theme'] = 'default';
bernd MIME-Type konfigurierbar

bernd authored 18 years ago

38)