config.php.example

changeset 0
472198dc918e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/config.php.example	Thu May 13 09:31:01 2010 -0500
@@ -0,0 +1,34 @@
+<?php
+
+$config = Array(
+	// Which registration backend to use
+	"backend" => "ejabberd_postgres",
+	
+	// For display purposes
+	"host" => "example.com",
+	"website" => "http://example.com/",
+	
+	// For database backends
+	"dbhost" => "localhost",
+	"dbuser" => "abc",
+	"dbpass" => "secret",
+	
+	// For LDAP backends
+	"ldapHostname" => "localhost",
+	"ldapPort" => 389,
+	"ldapBindPass" => "s3cr3t",
+	"ldapBindDN" => "cn=DSA Manager,cn=dsa,o=Org",
+	"ldapBaseDN" => "ou=Users,dc=jabber,dc=org,o=Org",
+	
+	// Your ReCAPCTHA keys (from http://recaptcha.net/api/getkey )
+	"recaptchaPrivateKey" => "abcdefghijklmnopqrstuvwxyz",
+	"recaptchaPublicKey"  => "abcdefghijklmnopqrstuvwxyz",
+	
+	// Page theme
+	"theme" => "default",
+	
+	// Temporarily change to TRUE if you need more output
+	"debug" => FALSE
+);
+
+?>

mercurial