summaryrefslogtreecommitdiffstats
path: root/config.php.dist
blob: d5ff315c4cd48bb274af78f42bc19baaee333652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

/**
 * This file should contain the configuration of databases.
 * 
 * $dbs_config is an array of database configurations. Each element of the
 * array should provide details for a database which will be selectable from
 * a list.
 * 
 * This is arguably more secure and convenient than submitting database
 * details with an HTML form (and sending them over an unsecured channel).
 * 
 * Refer to the 'Demo Configuration' below for reference.
 */

$dbs_config = array(
	// array(
	// 	'name' => 'Demo Configuration',
	// 	'config' => array(
	// 		'host'		=> 'localhost',
	// 		'user'		=> 'db_user',
	// 		'password'	=> 'db_password',
	// 		'name'		=> 'db_name'
	// 	)
	// ),
);

?>