2 # DO NOT EDIT - This file is being maintained by Chef
 
   4 # Protect against web entry
 
   5 if ( !defined( 'MEDIAWIKI' ) ) {
 
   9 ## Uncomment this to disable output compression
 
  10 # $wgDisableOutputCompression = true;
 
  12 $wgSitename      = '<%= @mediawiki[:sitename] %>';
 
  13 $wgMetaNamespace = '<%= @mediawiki[:metanamespace] %>';
 
  16 ## The URL base path to the directory containing the wiki;
 
  17 ## defaults for all runtime URL paths are based off of this.
 
  18 ## For more information on customizing the URLs
 
  19 ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
 
  20 ## http://www.mediawiki.org/wiki/Manual:Short_URL
 
  22 $wgArticlePath      = '/wiki/$1';
 
  23 $wgUsePathInfo      = true;
 
  24 $wgScriptExtension  = ".php";
 
  26 ## The protocol and server name to use in fully-qualified URLs
 
  27 $wgServer           = "//<%= @name %>";
 
  28 $wgInternalServer   = 'http://<%= @name %>';
 
  30 <% if @mediawiki[:ssl_enabled] -%>
 
  31 $wgSecureLogin = true;
 
  32 $wgDefaultUserOptions['prefershttps'] = 0;
 
  34 $wgCookieSecure = false;
 
  36 ## The relative URL path to the skins directory
 
  37 $wgStylePath        = "$wgScriptPath/skins";
 
  39 ## The relative URL path to the logo.  Make sure you change this from the default,
 
  40 ## or else you'll overwrite your logo when you upgrade!
 
  41 $wgLogo             = "<%= @mediawiki[:logo] %>";
 
  43 ## UPO means: this is also a user preference option
 
  45 $wgEnableEmail      = true;
 
  46 $wgEnableUserEmail  = true; # UPO
 
  48 $wgEmergencyContact = "<%= @mediawiki[:email_contact] %>";
 
  49 $wgPasswordSender   = "<%= @mediawiki[:email_sender] %>";
 
  50 $wgPasswordSenderName = "<%= @mediawiki[:email_sender_name] %>"; //Replaced by MediaWiki:Emailsender in v1.23.0
 
  52 $wgEnotifUserTalk      = true; # UPO
 
  53 $wgEnotifWatchlist     = true; # UPO
 
  54 $wgEmailAuthentication = true;
 
  56 $wgEnotifUseJobQ       = true;
 
  60 $wgDBserver         = "<%= @database_params[:host] %>";
 
  61 $wgDBname           = "<%= @database_params[:name] %>";
 
  62 $wgDBuser           = "<%= @database_params[:username] %>";
 
  63 $wgDBpassword       = "<%= @database_params[:password] %>";
 
  65 # MySQL specific settings
 
  68 # MySQL table options to use during installation or update
 
  69 $wgDBTableOptions   = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
 
  71 # Experimental charset support for MySQL 5.0.
 
  74 ## Shared memory settings
 
  75 $wgMainCacheType    = CACHE_MEMCACHED;
 
  76 $wgMemCachedServers = array('127.0.0.1:11211');
 
  77 $wgSessionsInObjectCache = TRUE;
 
  79 ## To enable image uploads, make sure the 'images' directory
 
  80 ## is writable, then set this to true:
 
  81 $wgEnableUploads  = true;
 
  82 $wgUseImageMagick = true;
 
  83 $wgImageMagickConvertCommand = "/usr/bin/convert";
 
  85 $wgGenerateThumbnailOnParse = false;
 
  86 $wgMaxImageArea = 125000000;
 
  87 $wgMaxShellMemory = 5524000;
 
  88 $wgMaxShellFileSize = 819200;
 
  89 $wgMaxShellTime = 360;
 
  90 $wgMaxShellWallClockTime = 360;
 
  92 # Allow some more upload extensions
 
  93 $wgFileExtensions[] = 'doc';
 
  94 $wgFileExtensions[] = 'pdf';
 
  95 $wgFileExtensions[] = 'odt';
 
  96 $wgFileExtensions[] = 'odp';
 
  97 $wgFileExtensions[] = 'svg';
 
  98 <% @mediawiki[:extra_file_extensions].each do |mw_extra_file_extension| -%>
 
  99         $wgFileExtensions[] = '<%= mw_extra_file_extension %>';
 
 102 $wgSVGConverters = array( 'rsvg' => '/usr/bin/rsvg-convert -w $width -h $height -o $output $input');
 
 103 $wgSVGConverter = 'rsvg';
 
 104 $wgSVGMaxSize = 2000;
 
 106 # InstantCommons allows wiki to use images from http://commons.wikimedia.org
 
 107 <% if @mediawiki[:commons] -%>
 
 108 $wgUseInstantCommons  = true;
 
 110 $wgUseInstantCommons  = false;
 
 113 ## If you use ImageMagick (or any other shell command) on a
 
 114 ## Linux server, this will need to be set to the name of an
 
 115 ## available UTF-8 locale
 
 116 $wgShellLocale = "en_US.utf8";
 
 118 ## If you want to use image uploads under safe mode,
 
 119 ## create the directories images/archive, images/thumb and
 
 120 ## images/temp, and make them all writable. Then uncomment
 
 121 ## this, if it's not already uncommented:
 
 122 #$wgHashedUploadDirectory = false;
 
 124 ## Set $wgCacheDirectory to a writable directory on the web server
 
 125 ## to make your wiki go slightly faster. The directory should not
 
 126 ## be publically accessible from the web.
 
 127 #$wgCacheDirectory = "$IP/cache";
 
 129 # Site language code, should be one of the list in ./languages/Names.php
 
 130 $wgLanguageCode = "en";
 
 132 $wgSecretKey = '<%= @node[:mediawiki][:sites][@name][:wgSecretKey] %>';
 
 134 # Site upgrade key. Must be set to a string (default provided) to turn on the
 
 135 # web installer while LocalSettings.php is in place
 
 136 #$wgUpgradeKey = "6ad907e74fc65836";
 
 138 ## Default skin: you can change the default skin. Use the internal symbolic
 
 139 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector':
 
 140 $wgDefaultSkin = "<%= @mediawiki[:skin] %>";
 
 142 ## For attaching licensing metadata to pages, and displaying an
 
 143 ## appropriate copyright notice / icon. GNU Free Documentation
 
 144 ## License and Creative Commons licenses are supported so far.
 
 145 $wgRightsPage = "OpenStreetMap_License"; # Set to the title of a wiki page that describes your license/copyright
 
 146 $wgRightsUrl  = "http://creativecommons.org/licenses/by-sa/2.0/";
 
 147 $wgRightsText = "Creative Commons Attribution-ShareAlike 2.0 license";
 
 148 $wgRightsIcon = "/cc-wiki.png";
 
 150 # Path to the GNU diff3 utility. Used for conflict resolution.
 
 151 $wgDiff3 = "/usr/bin/diff3";
 
 153 $wgExternalDiffEngine = 'wikidiff2';
 
 155 # Query string length limit for ResourceLoader. You should only set this if
 
 156 # your web server has a query string length limit (then set it to that limit),
 
 157 # or if you have suhosin.get.max_value_length set in php.ini (then set it to
 
 159 $wgResourceLoaderMaxQueryLength = -1;
 
 161 # End of automatically generated settings.
 
 162 # Add more configuration options below.
 
 164 #Only Allow Signed-in users to edit
 
 165 $wgGroupPermissions['*']['edit'] = false;
 
 167 #Allow bureaucrat group access to oversight options
 
 168 $wgGroupPermissions['bureaucrat']['hideuser'] = true;
 
 169 $wgGroupPermissions['bureaucrat']['deletelogentry'] = true;
 
 170 $wgGroupPermissions['bureaucrat']['deleterevision'] = true;
 
 171 $wgGroupPermissions['bureaucrat']['suppressrevision'] = true;
 
 172 $wgGroupPermissions['bureaucrat']['suppressionlog'] = true;
 
 174 <% if @mediawiki[:private_accounts] -%>
 
 175 #Prevent new user registrations except by existing users
 
 176 $wgGroupPermissions['*']['createaccount'] = false;
 
 177 $wgGroupPermissions['user']['createaccount'] = true;
 
 179 <% if @mediawiki[:private] -%>
 
 181 #Disable reading by anonymous users
 
 182 $wgGroupPermissions['*']['read'] = false;
 
 184 #Allow anonymous users to access the login page
 
 185 $wgWhitelistRead = array ("Special:Userlogin");
 
 187 #Prevent new user registrations except by sysops
 
 188 $wgGroupPermissions['*']['createaccount'] = false;
 
 190 #Restrict access to the upload directory
 
 191 $wgUploadPath = "$wgScriptPath/img_auth.php";
 
 194 #Allow Subpages on Main Namespace
 
 195 $wgNamespacesWithSubpages[NS_MAIN] = true;
 
 197 #DNS Blacklists to use
 
 198 $wgEnableDnsBlacklist = true;
 
 199 $wgDnsBlacklistUrls = array( 'proxies.dnsbl.sorbs.net.', 'opm.tornevall.org.', 'xbl.spamhaus.org.' );
 
 201 #Disable Hit Counter for Performance
 
 202 $wgDisableCounters = TRUE;
 
 203 #Disable IP in Header to avoid cache issue
 
 204 $wgShowIPinHeader = FALSE;
 
 209 # Allow external images from a few sites
 
 210 $wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'http://svenanders.openstreetmap.de/', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
 
 212 $wgNoFollowDomainExceptions = array( 'www.openstreetmap.org', 'josm.openstreetmap.de', 'taginfo.openstreetmap.org', 'blog.openstreetmap.org', 'wiki.osmfoundation.org' );
 
 214 #FIXME - move to specific
 
 215 $wgForceUIMsgAsContentMsg = array( 'mainpage-url', 'portal-url', 'mapfeatures-url', 'helppage' );
 
 217 #FIXME - move to specific
 
 218 $wgAllowUserJs = TRUE;
 
 219 $wgAllowUserCss = TRUE;
 
 221 #FIXME - move to specific
 
 223 define('NS_LANG_DE', 200);
 
 224 $wgExtraNamespaces[NS_LANG_DE] = 'DE';
 
 225 $wgNamespacesWithSubpages[NS_LANG_DE] = TRUE;
 
 226 $wgContentNamespaces[] = NS_LANG_DE;
 
 227 define('NS_LANG_DE_TALK', 201);
 
 228 $wgExtraNamespaces[NS_LANG_DE_TALK] = 'DE_talk';
 
 229 $wgNamespacesWithSubpages[NS_LANG_DE_TALK] = TRUE;
 
 232 define('NS_LANG_FR', 202);
 
 233 $wgExtraNamespaces[NS_LANG_FR] = 'FR';
 
 234 $wgNamespacesWithSubpages[NS_LANG_FR] = TRUE;
 
 235 $wgContentNamespaces[] = NS_LANG_FR;
 
 236 define('NS_LANG_FR_TALK', 203);
 
 237 $wgExtraNamespaces[NS_LANG_FR_TALK] = 'FR_talk';
 
 238 $wgNamespacesWithSubpages[NS_LANG_FR_TALK] = TRUE;
 
 241 define('NS_LANG_ES', 204);
 
 242 $wgExtraNamespaces[NS_LANG_ES] = 'ES';
 
 243 $wgNamespacesWithSubpages[NS_LANG_ES] = TRUE;
 
 244 $wgContentNamespaces[] = NS_LANG_ES;
 
 245 define('NS_LANG_ES_TALK', 205);
 
 246 $wgExtraNamespaces[NS_LANG_ES_TALK] = 'ES_talk';
 
 247 $wgNamespacesWithSubpages[NS_LANG_ES_TALK] = TRUE;
 
 250 define('NS_LANG_IT', 206);
 
 251 $wgExtraNamespaces[NS_LANG_IT] = 'IT';
 
 252 $wgNamespacesWithSubpages[NS_LANG_IT] = TRUE;
 
 253 $wgContentNamespaces[] = NS_LANG_IT;
 
 254 define('NS_LANG_IT_TALK', 207);
 
 255 $wgExtraNamespaces[NS_LANG_IT_TALK] = 'IT_talk';
 
 256 $wgNamespacesWithSubpages[NS_LANG_IT_TALK] = TRUE;
 
 259 define('NS_LANG_NL', 208);
 
 260 $wgExtraNamespaces[NS_LANG_NL] = 'NL';
 
 261 $wgNamespacesWithSubpages[NS_LANG_NL] = TRUE;
 
 262 $wgContentNamespaces[] = NS_LANG_NL;
 
 263 define('NS_LANG_NL_TALK', 209);
 
 264 $wgExtraNamespaces[NS_LANG_NL_TALK] = 'NL_talk';
 
 265 $wgNamespacesWithSubpages[NS_LANG_NL_TALK] = TRUE;
 
 268 define('NS_LANG_RU', 210);
 
 269 $wgExtraNamespaces[NS_LANG_RU] = 'RU';
 
 270 $wgNamespacesWithSubpages[NS_LANG_RU] = TRUE;
 
 271 $wgContentNamespaces[] = NS_LANG_RU;
 
 272 define('NS_LANG_RU_TALK', 211);
 
 273 $wgExtraNamespaces[NS_LANG_RU_TALK] = 'RU_talk';
 
 274 $wgNamespacesWithSubpages[NS_LANG_RU_TALK] = TRUE;
 
 277 define('NS_LANG_JA', 212);
 
 278 $wgExtraNamespaces[NS_LANG_JA] = 'JA';
 
 279 $wgNamespacesWithSubpages[NS_LANG_JA] = TRUE;
 
 280 $wgContentNamespaces[] = NS_LANG_JA;
 
 281 define('NS_LANG_JA_TALK', 213);
 
 282 $wgExtraNamespaces[NS_LANG_JA_TALK] = 'JA_talk';
 
 283 $wgNamespacesWithSubpages[NS_LANG_JA_TALK] = TRUE;
 
 285 $wgNamespacesToBeSearchedDefault[NS_LANG_DE] = TRUE;
 
 286 $wgNamespacesToBeSearchedDefault[NS_LANG_FR] = TRUE;
 
 287 $wgNamespacesToBeSearchedDefault[NS_LANG_ES] = TRUE;
 
 288 $wgNamespacesToBeSearchedDefault[NS_LANG_IT] = TRUE;
 
 289 $wgNamespacesToBeSearchedDefault[NS_LANG_NL] = TRUE;
 
 290 $wgNamespacesToBeSearchedDefault[NS_LANG_RU] = TRUE;
 
 291 $wgNamespacesToBeSearchedDefault[NS_LANG_JA] = TRUE;
 
 293 <% if @mediawiki[:site_readonly] -%>
 
 294 $wgReadOnly = "<%= @mediawiki[:site_readonly] %>";
 
 297 <% Dir.glob("#{@directory}/LocalSettings.d/*.php") do |file| -%>
 
 298 <%= "require_once('#{file}');" %>