Advertisement
Guest User

Untitled

a guest
May 29th, 2017
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <?php
  2. # This file was automatically generated by the MediaWiki 1.28.2
  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 = "CIn Wiki";
  22. $wgMetaNamespace = "CIn_Wiki";
  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 = "";
  30.  
  31. ## The protocol and server name to use in fully-qualified URLs
  32. $wgServer = "http://cinwiki.azurewebsites.net";
  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 = true;
  44. $wgEnableUserEmail = true; # UPO
  45.  
  46. $wgEmergencyContact = "apache@cinwiki.azurewebsites.net";
  47. $wgPasswordSender = "apache@cinwiki.azurewebsites.net";
  48.  
  49. $wgEnotifUserTalk = false; # UPO
  50. $wgEnotifWatchlist = false; # UPO
  51. $wgEmailAuthentication = true;
  52.  
  53. ## Database settings
  54. $wgDBtype = "postgres";
  55. $wgDBserver = "ec2-54-243-201-107.compute-1.amazonaws.com";
  56. $wgDBname = "d44t5pdascptti";
  57. $wgDBuser = "tksadszwemvlil";
  58. $wgDBpassword = "3tSgANMi9_ovgsTbotXaipeK8r";
  59.  
  60. # Postgres specific settings
  61. $wgDBport = "5432";
  62. $wgDBmwschema = "cinwiki";
  63.  
  64. ## Shared memory settings
  65. $wgMainCacheType = CACHE_NONE;
  66. $wgMemCachedServers = [];
  67.  
  68. ## To enable image uploads, make sure the 'images' directory
  69. ## is writable, then set this to true:
  70. $wgEnableUploads = false;
  71. #$wgUseImageMagick = true;
  72. #$wgImageMagickConvertCommand = "/usr/bin/convert";
  73.  
  74. # InstantCommons allows wiki to use images from https://commons.wikimedia.org
  75. $wgUseInstantCommons = false;
  76.  
  77. # Periodically send a pingback to https://www.mediawiki.org/ with basic data
  78. # about this MediaWiki instance. The Wikimedia Foundation shares this data
  79. # with MediaWiki developers to help guide future development efforts.
  80. $wgPingback = true;
  81.  
  82. ## If you use ImageMagick (or any other shell command) on a
  83. ## Linux server, this will need to be set to the name of an
  84. ## available UTF-8 locale
  85. $wgShellLocale = "en_US.utf8";
  86.  
  87. ## Set $wgCacheDirectory to a writable directory on the web server
  88. ## to make your wiki go slightly faster. The directory should not
  89. ## be publically accessible from the web.
  90. #$wgCacheDirectory = "$IP/cache";
  91.  
  92. # Site language code, should be one of the list in ./languages/data/Names.php
  93. $wgLanguageCode = "pt-br";
  94.  
  95. $wgSecretKey = "b0846825999bf8063fd06571b537774ee958fa27f9ee056745014be5cd21e145";
  96.  
  97. # Changing this will log out all existing sessions.
  98. $wgAuthenticationTokenVersion = "1";
  99.  
  100. # Site upgrade key. Must be set to a string (default provided) to turn on the
  101. # web installer while LocalSettings.php is in place
  102. $wgUpgradeKey = "601a0277aa33b801";
  103.  
  104. ## For attaching licensing metadata to pages, and displaying an
  105. ## appropriate copyright notice / icon. GNU Free Documentation
  106. ## License and Creative Commons licenses are supported so far.
  107. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  108. $wgRightsUrl = "";
  109. $wgRightsText = "";
  110. $wgRightsIcon = "";
  111.  
  112. # Path to the GNU diff3 utility. Used for conflict resolution.
  113. $wgDiff3 = "";
  114.  
  115. ## Default skin: you can change the default skin. Use the internal symbolic
  116. ## names, ie 'vector', 'monobook':
  117. $wgDefaultSkin = "vector";
  118.  
  119. # Enabled skins.
  120. # The following skins were automatically enabled:
  121. wfLoadSkin( 'CologneBlue' );
  122. wfLoadSkin( 'Modern' );
  123. wfLoadSkin( 'MonoBook' );
  124. wfLoadSkin( 'Vector' );
  125.  
  126.  
  127. # End of automatically generated settings.
  128. # Add more configuration options below.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement