Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.33 KB | None | 0 0
  1. <?php
  2. # This file was automatically generated by the MediaWiki 1.29.1
  3. # installer. If you make manual changes, please keep track in case you
  4. # need to recreate them later.
  5. #
  6. # See includes/DefaultSettings.php for all configurable settings
  7. # and their default values, but don't forget to make changes in _this_
  8. # file, not there.
  9. #
  10. # Further documentation for configuration settings may be found at:
  11. # https://www.mediawiki.org/wiki/Manual:Configuration_settings
  12.  
  13. # Protect against web entry
  14. if ( !defined( 'MEDIAWIKI' ) ) {
  15.     exit;
  16. }
  17.  
  18. ## Uncomment this to disable output compression
  19. # $wgDisableOutputCompression = true;
  20.  
  21. $wgSitename = "Area42";
  22.  
  23. ## The URL base path to the directory containing the wiki;
  24. ## defaults for all runtime URL paths are based off of this.
  25. ## For more information on customizing the URLs
  26. ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
  27. ## https://www.mediawiki.org/wiki/Manual:Short_URL
  28. $wgScriptPath = "/wiki";
  29.  
  30. ## The protocol and server name to use in fully-qualified URLs
  31. $wgServer = "http://kantsu.fi";
  32.  
  33. ## The URL path to static resources (images, scripts, etc.)
  34. $wgResourceBasePath = $wgScriptPath;
  35.  
  36. ## The URL path to the logo.  Make sure you change this from the default,
  37. ## or else you'll overwrite your logo when you upgrade!
  38. $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
  39.  
  40. ## UPO means: this is also a user preference option
  41.  
  42. $wgEnableEmail = true;
  43. $wgEnableUserEmail = true; # UPO
  44.  
  45. $wgEmergencyContact = "apache@kantsu.fi";
  46. $wgPasswordSender = "apache@kantsu.fi";
  47.  
  48. $wgEnotifUserTalk = false; # UPO
  49. $wgEnotifWatchlist = false; # UPO
  50. $wgEmailAuthentication = true;
  51.  
  52. ## Database settings
  53. $wgDBtype = "mysql";
  54. $wgDBserver = "localhost";
  55. $wgDBname = "mediawiki";
  56. $wgDBuser = "mediawiki";
  57. $wgDBpassword = "wiki666";
  58.  
  59. # MySQL specific settings
  60. $wgDBprefix = "";
  61.  
  62. # MySQL table options to use during installation or update
  63. $wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=utf8";
  64.  
  65. # Experimental charset support for MySQL 5.0.
  66. $wgDBmysql5 = false;
  67.  
  68. ## Shared memory settings
  69. $wgMainCacheType = CACHE_NONE;
  70. $wgMemCachedServers = [];
  71.  
  72. ## To enable image uploads, make sure the 'images' directory
  73. ## is writable, then set this to true:
  74. $wgEnableUploads = true;
  75. #$wgUseImageMagick = true;
  76. #$wgImageMagickConvertCommand = "/usr/bin/convert";
  77.  
  78. # InstantCommons allows wiki to use images from https://commons.wikimedia.org
  79. $wgUseInstantCommons = false;
  80.  
  81. # Periodically send a pingback to https://www.mediawiki.org/ with basic data
  82. # about this MediaWiki instance. The Wikimedia Foundation shares this data
  83. # with MediaWiki developers to help guide future development efforts.
  84. $wgPingback = false;
  85.  
  86. ## If you use ImageMagick (or any other shell command) on a
  87. ## Linux server, this will need to be set to the name of an
  88. ## available UTF-8 locale
  89. $wgShellLocale = "en_US.utf8";
  90.  
  91. ## Set $wgCacheDirectory to a writable directory on the web server
  92. ## to make your wiki go slightly faster. The directory should not
  93. ## be publically accessible from the web.
  94. #$wgCacheDirectory = "$IP/cache";
  95.  
  96. # Site language code, should be one of the list in ./languages/data/Names.php
  97. $wgLanguageCode = "en";
  98.  
  99. $wgSecretKey = "973f6094836f9b56b45536a6a4d3f329828874dc5437b8a8997089081d318dcb";
  100.  
  101. # Changing this will log out all existing sessions.
  102. $wgAuthenticationTokenVersion = "1";
  103.  
  104. # Site upgrade key. Must be set to a string (default provided) to turn on the
  105. # web installer while LocalSettings.php is in place
  106. $wgUpgradeKey = "7ee49ee33212a3c2";
  107.  
  108. ## For attaching licensing metadata to pages, and displaying an
  109. ## appropriate copyright notice / icon. GNU Free Documentation
  110. ## License and Creative Commons licenses are supported so far.
  111. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  112. $wgRightsUrl = "";
  113. $wgRightsText = "";
  114. $wgRightsIcon = "";
  115.  
  116. # Path to the GNU diff3 utility. Used for conflict resolution.
  117. $wgDiff3 = "";
  118.  
  119. ## Default skin: you can change the default skin. Use the internal symbolic
  120. ## names, ie 'vector', 'monobook':
  121. $wgDefaultSkin = "vector";
  122.  
  123. # Enabled skins.
  124. # The following skins were automatically enabled:
  125. wfLoadSkin( 'CologneBlue' );
  126. wfLoadSkin( 'Modern' );
  127. wfLoadSkin( 'MonoBook' );
  128. wfLoadSkin( 'Vector' );
  129.  
  130.  
  131. # End of automatically generated settings.
  132. # Add more configuration options below.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement