config.php.example

Thu, 13 May 2010 09:31:01 -0500

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 13 May 2010 09:31:01 -0500
changeset 0
472198dc918e
permissions
-rw-r--r--

Initial commit

<?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