explain where the settings are used
[lhc/web/wiklou.git] / AdminSettings.sample
1 <?
2 # This file should be copied to AdminSettings.php, and modified
3 # to reflect local settings. Unlike LocalSettings.php, it is
4 # not copied to the installation directory for security reasons;
5 # it is used by the install and maintenance scripts only.
6 #
7 # Developers: Do not check AdminSettings.php into CVS!
8
9 # This data is used to set up the database, and for all
10 # maintenance operations on it (rebuild links tables etc.).
11 # You can use the root account here. If you don't, make sure
12 # that the user has the rights to create the database before
13 # running the install script, or create the database yourself.
14
15 $wgDBadminuser = "wikiadmin";
16 $wgDBadminpassword = "adminpass";
17
18 # Define these if you want the installed files to be owned
19 # by a specific user or group for ease of maintenance. You
20 # must run the install script as root to change owners, or
21 # as a member of the group to change groups.
22 #
23 # $wgInstallOwner = "apache";
24 # $wgInstallGroup = "apache";
25
26 ?>