config.php.example

changeset 0
472198dc918e
equal deleted inserted replaced
-1:000000000000 0:472198dc918e
1 <?php
2
3 $config = Array(
4 // Which registration backend to use
5 "backend" => "ejabberd_postgres",
6
7 // For display purposes
8 "host" => "example.com",
9 "website" => "http://example.com/",
10
11 // For database backends
12 "dbhost" => "localhost",
13 "dbuser" => "abc",
14 "dbpass" => "secret",
15
16 // For LDAP backends
17 "ldapHostname" => "localhost",
18 "ldapPort" => 389,
19 "ldapBindPass" => "s3cr3t",
20 "ldapBindDN" => "cn=DSA Manager,cn=dsa,o=Org",
21 "ldapBaseDN" => "ou=Users,dc=jabber,dc=org,o=Org",
22
23 // Your ReCAPCTHA keys (from http://recaptcha.net/api/getkey )
24 "recaptchaPrivateKey" => "abcdefghijklmnopqrstuvwxyz",
25 "recaptchaPublicKey" => "abcdefghijklmnopqrstuvwxyz",
26
27 // Page theme
28 "theme" => "default",
29
30 // Temporarily change to TRUE if you need more output
31 "debug" => FALSE
32 );
33
34 ?>

mercurial