Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. <?php
  2. # This file was automatically generated by the MediaWiki 1.33.0
  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.  
  19. ## Uncomment this to disable output compression
  20. # $wgDisableOutputCompression = true;
  21.  
  22. $wgSitename = "HomeBase";
  23.  
  24. ## The URL base path to the directory containing the wiki;
  25. ## defaults for all runtime URL paths are based off of this.
  26. ## For more information on customizing the URLs
  27. ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
  28. ## https://www.mediawiki.org/wiki/Manual:Short_URL
  29. $wgScriptPath = "/mediawiki";
  30.  
  31. ## The protocol and server name to use in fully-qualified URLs
  32. $wgServer = "http://192.168.178.63";
  33.  
  34. ## The URL path to static resources (images, scripts, etc.)
  35. $wgResourceBasePath = $wgScriptPath;
  36.  
  37. ## The URL path to the logo. Make sure you change this from the default,
  38. ## or else you'll overwrite your logo when you upgrade!
  39. $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
  40.  
  41. ## UPO means: this is also a user preference option
  42.  
  43. $wgEnableEmail = false;
  44. $wgEnableUserEmail = true; # UPO
  45.  
  46. $wgEmergencyContact = "apache@192.168.178.63";
  47. $wgPasswordSender = "apache@192.168.178.63";
  48.  
  49. $wgEnotifUserTalk = false; # UPO
  50. $wgEnotifWatchlist = false; # UPO
  51. $wgEmailAuthentication = true;
  52.  
  53. ## Database settings
  54. $wgDBtype = "mysql";
  55. $wgDBserver = "localhost";
  56. $wgDBname = "my_wiki";
  57. $wgDBuser = "mediawiki";
  58. $wgDBpassword = "PloghX7mmn";
  59.  
  60. # MySQL specific settings
  61. $wgDBprefix = "";
  62.  
  63. # MySQL table options to use during installation or update
  64. $wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
  65.  
  66. ## Shared memory settings
  67. $wgMainCacheType = CACHE_ACCEL;
  68. $wgMemCachedServers = [];
  69.  
  70. ## To enable image uploads, make sure the 'images' directory
  71. ## is writable, then set this to true:
  72. $wgEnableUploads = true;
  73. #$wgUseImageMagick = true;
  74. #$wgImageMagickConvertCommand = "/usr/bin/convert";
  75.  
  76. # InstantCommons allows wiki to use images from https://commons.wikimedia.org
  77. $wgUseInstantCommons = false;
  78.  
  79. # Periodically send a pingback to https://www.mediawiki.org/ with basic data
  80. # about this MediaWiki instance. The Wikimedia Foundation shares this data
  81. # with MediaWiki developers to help guide future development efforts.
  82. $wgPingback = true;
  83.  
  84. ## If you use ImageMagick (or any other shell command) on a
  85. ## Linux server, this will need to be set to the name of an
  86. ## available UTF-8 locale
  87. $wgShellLocale = "C.UTF-8";
  88.  
  89. ## Set $wgCacheDirectory to a writable directory on the web server
  90. ## to make your wiki go slightly faster. The directory should not
  91. ## be publicly accessible from the web.
  92. #$wgCacheDirectory = "$IP/cache";
  93.  
  94. # Site language code, should be one of the list in ./languages/data/Names.php
  95. $wgLanguageCode = "en";
  96.  
  97. $wgSecretKey = "7cd8a70f2498f764a9c2d432e6ffb003df0fad2d0b301a61cdc1b412455d1714";
  98.  
  99. # Changing this will log out all existing sessions.
  100. $wgAuthenticationTokenVersion = "1";
  101.  
  102. # Site upgrade key. Must be set to a string (default provided) to turn on the
  103. # web installer while LocalSettings.php is in place
  104. $wgUpgradeKey = "dd7cea64443030f8";
  105.  
  106. ## For attaching licensing metadata to pages, and displaying an
  107. ## appropriate copyright notice / icon. GNU Free Documentation
  108. ## License and Creative Commons licenses are supported so far.
  109. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  110. $wgRightsUrl = "";
  111. $wgRightsText = "";
  112. $wgRightsIcon = "";
  113.  
  114. # Path to the GNU diff3 utility. Used for conflict resolution.
  115. $wgDiff3 = "/usr/bin/diff3";
  116.  
  117. ## Default skin: you can change the default skin. Use the internal symbolic
  118. ## names, ie 'vector', 'monobook':
  119. $wgDefaultSkin = "vector";
  120.  
  121. # Enabled skins.
  122. # The following skins were automatically enabled:
  123. wfLoadSkin( 'MonoBook' );
  124. wfLoadSkin( 'Timeless' );
  125. wfLoadSkin( 'Vector' );
  126.  
  127.  
  128. # Enabled extensions. Most of the extensions are enabled by adding
  129. # wfLoadExtensions('ExtensionName');
  130. # to LocalSettings.php. Check specific extension documentation for more details.
  131. # The following extensions were automatically enabled:
  132. wfLoadExtension( 'CodeEditor' );
  133. wfLoadExtension( 'PdfHandler' );
  134. wfLoadExtension( 'SpamBlacklist' );
  135. wfLoadExtension( 'SyntaxHighlight_GeSHi' );
  136. wfLoadExtension( 'WikiEditor' );
  137.  
  138.  
  139. # End of automatically generated settings.
  140. # Add more configuration options below.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement