1<?php 2# This file was automatically generated by the MediaWiki 1.19.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# http://www.mediawiki.org/wiki/Manual:Configuration_settings 12 13# Protect against web entry 14if ( !defined( 'MEDIAWIKI' ) ) { 15 exit; 16} 17 18## Uncomment this to disable output compression 19# $wgDisableOutputCompression = true; 20 21$wgSitename = "Git-MediaWiki-Test"; 22$wgMetaNamespace = "Git-MediaWiki-Test"; 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 please see: 27## http://www.mediawiki.org/wiki/Manual:Short_URL 28$wgScriptPath = "@WG_SCRIPT_PATH@"; 29$wgScriptExtension = ".php"; 30 31## The protocol and server name to use in fully-qualified URLs 32$wgServer = "@WG_SERVER@"; 33 34## The relative URL path to the skins directory 35$wgStylePath = "$wgScriptPath/skins"; 36 37## The relative 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 = "$wgStylePath/common/images/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@localhost"; 47$wgPasswordSender = "apache@localhost"; 48 49$wgEnotifUserTalk = false; # UPO 50$wgEnotifWatchlist = false; # UPO 51$wgEmailAuthentication = true; 52 53## Database settings 54$wgDBtype = "sqlite"; 55$wgDBserver = ""; 56$wgDBname = "@WG_SQLITE_DATAFILE@"; 57$wgDBuser = ""; 58$wgDBpassword = ""; 59 60# SQLite-specific settings 61$wgSQLiteDataDir = "@WG_SQLITE_DATADIR@"; 62 63 64## Shared memory settings 65$wgMainCacheType = CACHE_NONE; 66$wgMemCachedServers = array(); 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 ="@CONVERT@"; 73 74# InstantCommons allows wiki to use images from http://commons.wikimedia.org 75$wgUseInstantCommons = false; 76 77## If you use ImageMagick (or any other shell command) on a 78## Linux server, this will need to be set to the name of an 79## available UTF-8 locale 80$wgShellLocale = "en_US.utf8"; 81 82## If you want to use image uploads under safe mode, 83## create the directories images/archive, images/thumb and 84## images/temp, and make them all writable. Then uncomment 85## this, if it's not already uncommented: 86#$wgHashedUploadDirectory = false; 87 88## Set $wgCacheDirectory to a writable directory on the web server 89## to make your wiki go slightly faster. The directory should not 90## be publically accessible from the web. 91#$wgCacheDirectory = "$IP/cache"; 92 93# Site language code, should be one of the list in ./languages/Names.php 94$wgLanguageCode = "en"; 95 96$wgSecretKey = "1c912bfe3519fb70f5dc523ecc698111cd43d81a11c585b3eefb28f29c2699b7"; 97#$wgSecretKey = "@SECRETKEY@"; 98 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 = "ddae7dc87cd0a645"; 103 104## Default skin: you can change the default skin. Use the internal symbolic 105## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector': 106$wgDefaultSkin = "vector"; 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 = "/usr/bin/diff3"; 118 119# Query string length limit for ResourceLoader. You should only set this if 120# your web server has a query string length limit (then set it to that limit), 121# or if you have suhosin.get.max_value_length set in php.ini (then set it to 122# that value) 123$wgResourceLoaderMaxQueryLength = -1; 124 125 126 127# End of automatically generated settings. 128# Add more configuration options below.