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] %>';
 
  15 ## The URL base path to the directory containing the wiki;
 
  16 ## defaults for all runtime URL paths are based off of this.
 
  17 ## For more information on customizing the URLs
 
  18 ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
 
  19 ## https://www.mediawiki.org/wiki/Manual:Short_URL
 
  21 $wgArticlePath      = '/wiki/$1';
 
  22 $wgUsePathInfo      = true;
 
  23 $wgScriptExtension  = ".php";
 
  25 ## The protocol and server name to use in fully-qualified URLs
 
  26 $wgServer           = "//<%= @name %>";
 
  27 $wgInternalServer   = 'https://<%= @name %>';
 
  28 $wgCanonicalServer  = 'https://<%= @name %>';
 
  30 $wgSecureLogin = true;
 
  31 $wgDefaultUserOptions['prefershttps'] = 1;
 
  32 $wgCookieSecure = true;
 
  34 ## The relative URL path to the skins directory
 
  35 $wgStylePath        = "$wgScriptPath/skins";
 
  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             = "<%= @mediawiki[:logo] %>";
 
  41 ## UPO means: this is also a user preference option
 
  43 $wgEnableEmail      = true;
 
  44 $wgEnableUserEmail  = true; # UPO
 
  46 $wgEmergencyContact = "<%= @mediawiki[:email_contact] %>";
 
  47 $wgPasswordSender   = "<%= @mediawiki[:email_sender] %>";
 
  48 $wgPasswordSenderName = "<%= @mediawiki[:email_sender_name] %>"; //Replaced by MediaWiki:Emailsender in v1.23.0
 
  49 $wgNoReplyAddress = "<%= @mediawiki[:email_sender] %>";
 
  51 $wgEnotifUserTalk      = true; # UPO
 
  52 $wgEnotifWatchlist     = true; # UPO
 
  53 $wgEmailAuthentication = true;
 
  55 $wgEnotifUseJobQ       = true;
 
  59 $wgDBserver         = "<%= @database_params[:host] %>";
 
  60 $wgDBname           = "<%= @database_params[:name] %>";
 
  61 $wgDBuser           = "<%= @database_params[:username] %>";
 
  62 $wgDBpassword       = "<%= @database_params[:password] %>";
 
  64 # MySQL specific settings
 
  67 # MySQL table options to use during installation or update
 
  68 $wgDBTableOptions   = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
 
  70 # Experimental charset support for MySQL 5.0.
 
  73 ## Shared memory settings
 
  74 $wgMainCacheType    = CACHE_MEMCACHED;
 
  75 $wgMemCachedServers = array('127.0.0.1:11211');
 
  76 $wgSessionsInObjectCache = TRUE;
 
  78 ## To enable image uploads, make sure the 'images' directory
 
  79 ## is writable, then set this to true:
 
  80 $wgEnableUploads  = true;
 
  81 $wgUseImageMagick = true;
 
  82 $wgImageMagickConvertCommand = "/usr/bin/convert";
 
  84 $wgGenerateThumbnailOnParse = false;
 
  85 $wgMaxImageArea = 125000000;
 
  86 $wgMaxShellMemory = 5524000;
 
  87 $wgMaxShellFileSize = 819200;
 
  88 $wgMaxShellTime = 360;
 
  89 $wgMaxShellWallClockTime = 360;
 
  91 # Allow some more upload extensions
 
  92 $wgFileExtensions[] = 'pdf';
 
  93 $wgFileExtensions[] = 'odt';
 
  94 $wgFileExtensions[] = 'odp';
 
  95 $wgFileExtensions[] = 'ods';
 
  96 $wgFileExtensions[] = 'svg';
 
  97 $wgFileExtensions[] = 'osm';
 
  98 <% @mediawiki[:extra_file_extensions].each do |mw_extra_file_extension| -%>
 
  99         $wgFileExtensions[] = '<%= mw_extra_file_extension %>';
 
 102 # Add OSM XML file format per http://www.iana.org/assignments/media-types/media-types.xhtml
 
 103 # Shout out to Paul Norman for reserving this.
 
 104 # Helps MimeMagic determine XML-based formats and chooses the correct MimeType
 
 106 $wgXMLMimeTypes[] = array('osm' => 'application/vnd.openstreetmap.data+xml');
 
 108 $wgTrustedMediaFormats[] = 'application/vnd.openstreetmap.data+xml';
 
 110 $wgSVGConverters = array( 'rsvg' => '/usr/bin/rsvg-convert -w $width -h $height -o $output $input');
 
 111 $wgSVGConverter = 'rsvg';
 
 112 $wgSVGMaxSize = 2000;
 
 114 <% if @mediawiki[:commons] -%>
 
 115 # Enable use of images from https://commons.wikimedia.org
 
 116 $wgForeignFileRepos[] = [
 
 117   'class' => ForeignAPIRepo::class,
 
 118   'name' => 'wikimediacommons',
 
 119   'apibase' => 'https://commons.wikimedia.org/w/api.php',
 
 120   'url' => 'https://upload.wikimedia.org/wikipedia/commons', 
 
 121   'thumbUrl' => 'https://upload.wikimedia.org/wikipedia/commons/thumb',
 
 123   'transformVia404' => true,
 
 124   'fetchDescription' => true,
 
 125   'descriptionCacheExpiry' => 43200,
 
 126   'apiThumbCacheExpiry' => 86400,
 
 130 ## If you use ImageMagick (or any other shell command) on a
 
 131 ## Linux server, this will need to be set to the name of an
 
 132 ## available UTF-8 locale
 
 133 $wgShellLocale = "en_US.utf8";
 
 135 ## If you want to use image uploads under safe mode,
 
 136 ## create the directories images/archive, images/thumb and
 
 137 ## images/temp, and make them all writable. Then uncomment
 
 138 ## this, if it's not already uncommented:
 
 139 #$wgHashedUploadDirectory = false;
 
 141 ## Set $wgCacheDirectory to a writable directory on the web server
 
 142 ## to make your wiki go slightly faster. The directory should not
 
 143 ## be publically accessible from the web.
 
 144 #$wgCacheDirectory = "$IP/cache";
 
 146 # Site language code, should be one of the list in ./languages/Names.php
 
 147 $wgLanguageCode = "en";
 
 149 ## Enable setting the page content language by users
 
 150 $wgPageLanguageUseDB = true;
 
 151 $wgGroupPermissions['user']['pagelang'] = true;
 
 153 $wgSecretKey = '<%= @secret_key %>';
 
 155 # Site upgrade key. Must be set to a string (default provided) to turn on the
 
 156 # web installer while LocalSettings.php is in place
 
 157 #$wgUpgradeKey = "6ad907e74fc65836";
 
 159 ## Default skin: you can change the default skin. Use the internal symbolic
 
 160 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector':
 
 161 $wgDefaultSkin = "<%= @mediawiki[:skin] %>";
 
 163 ## For attaching licensing metadata to pages, and displaying an
 
 164 ## appropriate copyright notice / icon. GNU Free Documentation
 
 165 ## License and Creative Commons licenses are supported so far.
 
 166 $wgRightsPage = "Wiki_content_license"; # Set to the title of a wiki page that describes your license/copyright
 
 167 $wgRightsUrl  = "https://creativecommons.org/licenses/by-sa/2.0/";
 
 168 $wgRightsText = "Creative Commons Attribution-ShareAlike 2.0 license";
 
 169 $wgRightsIcon = "/cc-wiki.png";
 
 171 # Path to the GNU diff3 utility. Used for conflict resolution.
 
 172 $wgDiff3 = "/usr/bin/diff3";
 
 174 $wgExternalDiffEngine = 'wikidiff2';
 
 176 # Query string length limit for ResourceLoader. You should only set this if
 
 177 # your web server has a query string length limit (then set it to that limit),
 
 178 # or if you have suhosin.get.max_value_length set in php.ini (then set it to
 
 180 $wgResourceLoaderMaxQueryLength = -1;
 
 182 # End of automatically generated settings.
 
 183 # Add more configuration options below.
 
 185 # Only Allow Signed-in users to edit
 
 186 $wgGroupPermissions['*']['edit'] = false;
 
 188 # Only allow autoconfirmed for a few actions
 
 189 $wgGroupPermissions['user']['move'] = false;
 
 190 $wgGroupPermissions['user']['movefile'] = false;
 
 191 $wgGroupPermissions['user']['move-categorypages'] = false;
 
 192 $wgGroupPermissions['user']['upload'] = false;
 
 193 $wgGroupPermissions['autoconfirmed']['move'] = true;
 
 194 $wgGroupPermissions['autoconfirmed']['movefile'] = true;
 
 195 $wgGroupPermissions['autoconfirmed']['move-categorypages'] = true;
 
 196 $wgGroupPermissions['autoconfirmed']['upload'] = true;
 
 198 # Allow bureaucrat group access to oversight options
 
 199 $wgGroupPermissions['bureaucrat']['hideuser'] = true;
 
 200 $wgGroupPermissions['bureaucrat']['deletelogentry'] = true;
 
 201 $wgGroupPermissions['bureaucrat']['deleterevision'] = true;
 
 202 $wgGroupPermissions['bureaucrat']['suppressrevision'] = true;
 
 203 $wgGroupPermissions['bureaucrat']['suppressionlog'] = true;
 
 205 # Since 1.32 MW introduced interface-admin group to separate all UI-related rights. This makes sense for bigger sites,
 
 206 # but for OSM it makes more sense to keep group structure simple.  Give all interface-admin rights to sysops.
 
 207 # Also remove the interface-admin group to avoid confusion.
 
 208 $wgGroupPermissions['sysop'] = array_merge( $wgGroupPermissions['sysop'], $wgGroupPermissions['interface-admin'] );
 
 209 unset( $wgGroupPermissions['interface-admin'] );
 
 210 unset( $wgRevokePermissions['interface-admin'] );
 
 211 unset( $wgAddGroups['interface-admin'] );
 
 212 unset( $wgRemoveGroups['interface-admin'] );
 
 213 unset( $wgGroupsAddToSelf['interface-admin'] );
 
 214 unset( $wgGroupsRemoveFromSelf['interface-admin'] );
 
 216 # The v1.32+ gadget system also requires two additional rights
 
 217 # See https://www.mediawiki.org/wiki/Extension:Gadgets
 
 218 $wgGroupPermissions['sysop']['gadgets-edit'] = true;
 
 219 $wgGroupPermissions['sysop']['gadgets-definition-edit'] = true;
 
 221 <% if @mediawiki[:private_accounts] -%>
 
 222 # Prevent new user registrations except by existing users
 
 223 $wgGroupPermissions['*']['createaccount'] = false;
 
 224 $wgGroupPermissions['user']['createaccount'] = true;
 
 226 <% if @mediawiki[:private_site] -%>
 
 228 # Disable reading by anonymous users
 
 229 $wgGroupPermissions['*']['read'] = false;
 
 231 # Allow anonymous users to access the login page
 
 232 $wgWhitelistRead = array ("Special:Userlogin");
 
 234 # Prevent new user registrations except by sysops
 
 235 $wgGroupPermissions['*']['createaccount'] = false;
 
 237 # Restrict access to the upload directory
 
 238 $wgUploadPath = "$wgScriptPath/img_auth.php";
 
 241 <% if not(@mediawiki[:private_accounts]) and not(@mediawiki[:private_site]) -%>
 
 242 # user group "confirmed" with identical rights as "autoconfirmed", but assigned manually by sysops
 
 243 $wgGroupPermissions['confirmed'] = $wgGroupPermissions['autoconfirmed'];
 
 244 $wgAddGroups['sysop'][] = 'confirmed';
 
 245 $wgRemoveGroups['sysop'][] = 'confirmed';
 
 248 # Allow Subpages on Main Namespace
 
 249 $wgNamespacesWithSubpages[NS_MAIN] = true;
 
 251 # DNS Blacklists to use
 
 252 $wgEnableDnsBlacklist = true;
 
 253 $wgDnsBlacklistUrls = array( 'proxies.dnsbl.sorbs.net.', 'opm.tornevall.org.', 'xbl.spamhaus.org.', 'dnsbl-2.uceprotect.net.' );
 
 255 # Require validated email to edit
 
 256 $wgEmailConfirmToEdit = true;
 
 258 # Extend autoblock period
 
 259 $wgAutoblockExpiry = 7776000; // 90 days
 
 261 # Autopromote users to autoconfirmed
 
 262 $wgAutoConfirmAge = 345600; // 4 days
 
 263 $wgAutoConfirmCount = 10;
 
 265 # Disable Hit Counter for Performance
 
 266 $wgDisableCounters = TRUE;
 
 267 # Disable IP in Header to avoid cache issue
 
 268 $wgShowIPinHeader = FALSE;
 
 270 # Job Runs mostly by cron
 
 271 $wgJobRunRate = 0.01;
 
 273 # dissolves double redirects automatically
 
 274 $wgFixDoubleRedirects = TRUE;
 
 276 # Allow external images from a few sites
 
 277 $wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'https://tile.openstreetmap.org', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
 
 279 $wgNoFollowDomainExceptions = array( 'www.openstreetmap.org', 'josm.openstreetmap.de', 'taginfo.openstreetmap.org', 'blog.openstreetmap.org', 'wiki.osmfoundation.org' );
 
 281 # FIXME - move to specific
 
 282 # defines which links of the sidebar are translatable 
 
 283 $wgForceUIMsgAsContentMsg = array( 'mainpage-url', 'mapfeatures-url', 'contributors-url', 'helppage', 'blogs-url', 'shop-url', 'sitesupport-url' );
 
 285 # FIXME - move to specific
 
 286 $wgAllowUserJs = TRUE;
 
 287 $wgAllowUserCss = TRUE;
 
 289 # FIXME - move to specific
 
 291 define('NS_LANG_DE', 200);
 
 292 $wgExtraNamespaces[NS_LANG_DE] = 'DE';
 
 293 $wgNamespacesWithSubpages[NS_LANG_DE] = TRUE;
 
 294 $wgContentNamespaces[] = NS_LANG_DE;
 
 295 define('NS_LANG_DE_TALK', 201);
 
 296 $wgExtraNamespaces[NS_LANG_DE_TALK] = 'DE_talk';
 
 297 $wgNamespacesWithSubpages[NS_LANG_DE_TALK] = TRUE;
 
 300 define('NS_LANG_FR', 202);
 
 301 $wgExtraNamespaces[NS_LANG_FR] = 'FR';
 
 302 $wgNamespacesWithSubpages[NS_LANG_FR] = TRUE;
 
 303 $wgContentNamespaces[] = NS_LANG_FR;
 
 304 define('NS_LANG_FR_TALK', 203);
 
 305 $wgExtraNamespaces[NS_LANG_FR_TALK] = 'FR_talk';
 
 306 $wgNamespacesWithSubpages[NS_LANG_FR_TALK] = TRUE;
 
 309 define('NS_LANG_ES', 204);
 
 310 $wgExtraNamespaces[NS_LANG_ES] = 'ES';
 
 311 $wgNamespacesWithSubpages[NS_LANG_ES] = TRUE;
 
 312 $wgContentNamespaces[] = NS_LANG_ES;
 
 313 define('NS_LANG_ES_TALK', 205);
 
 314 $wgExtraNamespaces[NS_LANG_ES_TALK] = 'ES_talk';
 
 315 $wgNamespacesWithSubpages[NS_LANG_ES_TALK] = TRUE;
 
 318 define('NS_LANG_IT', 206);
 
 319 $wgExtraNamespaces[NS_LANG_IT] = 'IT';
 
 320 $wgNamespacesWithSubpages[NS_LANG_IT] = TRUE;
 
 321 $wgContentNamespaces[] = NS_LANG_IT;
 
 322 define('NS_LANG_IT_TALK', 207);
 
 323 $wgExtraNamespaces[NS_LANG_IT_TALK] = 'IT_talk';
 
 324 $wgNamespacesWithSubpages[NS_LANG_IT_TALK] = TRUE;
 
 327 define('NS_LANG_NL', 208);
 
 328 $wgExtraNamespaces[NS_LANG_NL] = 'NL';
 
 329 $wgNamespacesWithSubpages[NS_LANG_NL] = TRUE;
 
 330 $wgContentNamespaces[] = NS_LANG_NL;
 
 331 define('NS_LANG_NL_TALK', 209);
 
 332 $wgExtraNamespaces[NS_LANG_NL_TALK] = 'NL_talk';
 
 333 $wgNamespacesWithSubpages[NS_LANG_NL_TALK] = TRUE;
 
 336 define('NS_LANG_RU', 210);
 
 337 $wgExtraNamespaces[NS_LANG_RU] = 'RU';
 
 338 $wgNamespacesWithSubpages[NS_LANG_RU] = TRUE;
 
 339 $wgContentNamespaces[] = NS_LANG_RU;
 
 340 define('NS_LANG_RU_TALK', 211);
 
 341 $wgExtraNamespaces[NS_LANG_RU_TALK] = 'RU_talk';
 
 342 $wgNamespacesWithSubpages[NS_LANG_RU_TALK] = TRUE;
 
 345 define('NS_LANG_JA', 212);
 
 346 $wgExtraNamespaces[NS_LANG_JA] = 'JA';
 
 347 $wgNamespacesWithSubpages[NS_LANG_JA] = TRUE;
 
 348 $wgContentNamespaces[] = NS_LANG_JA;
 
 349 define('NS_LANG_JA_TALK', 213);
 
 350 $wgExtraNamespaces[NS_LANG_JA_TALK] = 'JA_talk';
 
 351 $wgNamespacesWithSubpages[NS_LANG_JA_TALK] = TRUE;
 
 353 $wgNamespacesToBeSearchedDefault[NS_LANG_DE] = TRUE;
 
 354 $wgNamespacesToBeSearchedDefault[NS_LANG_FR] = TRUE;
 
 355 $wgNamespacesToBeSearchedDefault[NS_LANG_ES] = TRUE;
 
 356 $wgNamespacesToBeSearchedDefault[NS_LANG_IT] = TRUE;
 
 357 $wgNamespacesToBeSearchedDefault[NS_LANG_NL] = TRUE;
 
 358 $wgNamespacesToBeSearchedDefault[NS_LANG_RU] = TRUE;
 
 359 $wgNamespacesToBeSearchedDefault[NS_LANG_JA] = TRUE;
 
 362 # Raise expensive lua (and other function) call limits to match WP
 
 363 # Docs:  https://www.mediawiki.org/wiki/Manual:$wgExpensiveParserFunctionLimit
 
 364 # Wikipedia's Config:  https://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php
 
 365 $wgExpensiveParserFunctionLimit = 500;
 
 368 <% if @mediawiki[:site_notice] -%>
 
 369 $wgSiteNotice = "<%= @mediawiki[:site_notice] %>";
 
 371 <% if @mediawiki[:site_readonly] -%>
 
 372 $wgReadOnly = "<%= @mediawiki[:site_readonly] %>";
 
 375 <% Dir.glob("#{@directory}/LocalSettings.d/*.php") do |file| -%>
 
 376 <%= "require_once('#{file}');" %>