Just found another old notes on the initial tuning of MediaWiki installation. Note sure if they are outdated or not, but maybe somebody will find them useful. The notes are not really detailed, so some minimal technical understanding of MediaWiki software is required.
Permissions
Disable self-registration and anonymous editing:
$wgGroupPermissions['*']['createaccount'] = false; $wgGroupPermissions['*']['edit'] = false;
Appearance
Change the name of the site (shown in browser window title):
$wgSitename = "My private Wiki";
Change the main page:
- Go to “MediaWiki:Mainpage” page
- Click on “Create” or “Edit” tab
- Enter the name of new main page
- Save changes
Files Upload
Change allowed upload types:
$wgFileExtensions[] = 'zip';
Icons for file types are located under skins/common/images/icons
directory.
Site Name in OpenSearch Box
To edit site name that is displayed in search boxes of popular browsers:
- Go to “Special:Allmessages” page
- Find
opensearch-desc
message - Click on the message name
- On the edit page, set the new message text
- Save the page