PostgreSQL/Tsearch2 full-text-index initial support
[lhc/web/wiklou.git] / AdminSettings.sample
1 <?php
2 /**
3 * This file should be copied to AdminSettings.php, and modified
4 * to reflect local settings. Unlike LocalSettings.php, it is
5 * not copied to the installation directory for security reasons;
6 * it is used by the install and maintenance scripts only.
7 *
8 * Developers: Do not check AdminSettings.php into CVS!
9 *
10 * @package MediaWiki
11 */
12
13 /*
14 * This data is used by all database maintenance scripts
15 * (see directory maintenance/). The SQL user DOES NOT NEED
16 * TO EXIST. It is created by the installation script,
17 * which will prompt you for the MySQL root password.
18 *
19 * This is not to be confused with sysop accounts for the
20 * wiki.
21 */
22 $wgDBadminuser = 'wikiadmin';
23 $wgDBadminpassword = 'adminpass';
24
25 /**
26 * Define these if you want the installed files to be owned
27 * by a specific user or group for ease of maintenance. You
28 * must run the install script as root to change owners, or
29 * as a member of the group to change groups.
30 */
31 # $wgInstallOwner = 'apache';
32 # $wgInstallGroup = 'apache';
33
34 ?>