Browse Source

Update the mediawiki config file with domain name

More simple installation (no extension) and domain name set to `wiki.jovian-hersemeule.eu`.
DricomDragon 5 years ago
parent
commit
71cbd16548
1 changed files with 9 additions and 27 deletions
  1. 9 27
      Install/Templates/mediawiki/LocalSettings.php

+ 9 - 27
Install/Templates/mediawiki/LocalSettings.php

@@ -30,7 +30,7 @@ $wgMetaNamespace = "Ab";
 $wgScriptPath = "";
 
 ## The protocol and server name to use in fully-qualified URLs
-$wgServer = "http://192.168.0.10";
+$wgServer = "https://wiki.jovian-hersemeule.eu";
 
 ## The URL path to static resources (images, scripts, etc.)
 $wgResourceBasePath = $wgScriptPath;
@@ -44,8 +44,8 @@ $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
 $wgEnableEmail = false;
 $wgEnableUserEmail = true; # UPO
 
-$wgEmergencyContact = "apache@192.168.0.10";
-$wgPasswordSender = "apache@192.168.0.10";
+$wgEmergencyContact = "apache@wiki.jovian-hersemeule.eu";
+$wgPasswordSender = "apache@wiki.jovian-hersemeule.eu";
 
 $wgEnotifUserTalk = false; # UPO
 $wgEnotifWatchlist = false; # UPO
@@ -60,7 +60,7 @@ $wgDBpassword = "52w7maa..";
 
 # Postgres specific settings
 $wgDBport = "5432";
-$wgDBmwschema = "assetbot";
+$wgDBmwschema = "mediawiki";
 
 ## Shared memory settings
 $wgMainCacheType = CACHE_ACCEL;
@@ -93,22 +93,22 @@ $wgShellLocale = "C.UTF-8";
 # Site language code, should be one of the list in ./languages/data/Names.php
 $wgLanguageCode = "fr";
 
-$wgSecretKey = "ebb519854912026711e2700b80817fefb24c0bee5504e21cc801a4181f083060";
+$wgSecretKey = "f5b3c1f04494decacc1798c03e81b2a63a003b2bd1d0217cdcb276efdb0650c7";
 
 # Changing this will log out all existing sessions.
 $wgAuthenticationTokenVersion = "1";
 
 # Site upgrade key. Must be set to a string (default provided) to turn on the
 # web installer while LocalSettings.php is in place
-$wgUpgradeKey = "022c8cfbc6ca504a";
+$wgUpgradeKey = "b2aef133776fb372";
 
 ## For attaching licensing metadata to pages, and displaying an
 ## appropriate copyright notice / icon. GNU Free Documentation
 ## License and Creative Commons licenses are supported so far.
 $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
-$wgRightsUrl = "https://creativecommons.org/licenses/by/4.0/";
-$wgRightsText = "Creative Commons Attribution";
-$wgRightsIcon = "$wgResourceBasePath/resources/assets/licenses/cc-by.png";
+$wgRightsUrl = "";
+$wgRightsText = "";
+$wgRightsIcon = "";
 
 # Path to the GNU diff3 utility. Used for conflict resolution.
 $wgDiff3 = "/usr/bin/diff3";
@@ -129,24 +129,6 @@ wfLoadSkin( 'Timeless' );
 wfLoadSkin( 'Vector' );
 
 
-# Enabled extensions. Most of the extensions are enabled by adding
-# wfLoadExtensions('ExtensionName');
-# to LocalSettings.php. Check specific extension documentation for more details.
-# The following extensions were automatically enabled:
-wfLoadExtension( 'CategoryTree' );
-wfLoadExtension( 'Cite' );
-wfLoadExtension( 'CiteThisPage' );
-wfLoadExtension( 'CodeEditor' );
-wfLoadExtension( 'ImageMap' );
-wfLoadExtension( 'InputBox' );
-wfLoadExtension( 'ParserFunctions' );
-wfLoadExtension( 'PdfHandler' );
-wfLoadExtension( 'Renameuser' );
-wfLoadExtension( 'ReplaceText' );
-wfLoadExtension( 'SyntaxHighlight_GeSHi' );
-wfLoadExtension( 'WikiEditor' );
-
-
 # End of automatically generated settings.
 # Add more configuration options below.