## The protocol and server name to use in fully-qualified URLs
$wgServer = "//<%= @name %>";
$wgInternalServer = 'https://<%= @name %>';
+$wgCanonicalServer = 'https://<%= @name %>';
$wgSecureLogin = true;
$wgDefaultUserOptions['prefershttps'] = 1;
# Job Runs by cron
$wgJobRunRate = 0;
+# dissolves double redirects automatically
+$wgFixDoubleRedirects = TRUE;
+
# Allow external images from a few sites
-$wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'http://svenanders.openstreetmap.de/', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
+$wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
$wgNoFollowDomainExceptions = array( 'www.openstreetmap.org', 'josm.openstreetmap.de', 'taginfo.openstreetmap.org', 'blog.openstreetmap.org', 'wiki.osmfoundation.org' );
$wgNamespacesToBeSearchedDefault[NS_LANG_RU] = TRUE;
$wgNamespacesToBeSearchedDefault[NS_LANG_JA] = TRUE;
+
+# Raise expensive lua (and other function) call limits to match WP
+# Docs: https://www.mediawiki.org/wiki/Manual:$wgExpensiveParserFunctionLimit
+# Wikipedia's Config: https://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php
+$wgExpensiveParserFunctionLimit = 500;
+
+
<% if @mediawiki[:site_notice] -%>
$wgSiteNotice = "<%= @mediawiki[:site_notice] %>";
<% end -%>