Table of Contents

Lock down Mediawiki

Add following directives to LocalSettings.php.

Disable user account creation

$wgGroupPermissions['*']['createaccount'] = false;

Disable page creation editing

$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['*']['createpage'] = false;

Block login of disabled user accounts

$wgBlockDisablesLogin=true;

See also

References