This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/roles/services/wiki/templates/LocalSettings_rw.php.j2

22 lines
482 B
Django/Jinja

<?php
if ( !defined( 'MEDIAWIKI' ) ) {
exit;
}
$wgSitename = "Rockwell Wiki";
$wgMetaNamespace = "Rockwell_Wiki";
$wgScriptPath = "/rw";
$wgResourceBasePath = $wgScriptPath;
$wgLogos = [ '1x' => "$wgResourceBasePath/resources/assets/rw.png" ];
$wgDBname = "rw_wiki";
$wgSecretKey = "{{ wgSecretKey[item.0] }}";
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['*']['read'] = false;
$wgDefaultSkin = "timeless";