]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/mediawiki/templates/default/LocalSettings.php.erb
mediawiki: Use less aggressive DNSBLs
[chef.git] / cookbooks / mediawiki / templates / default / LocalSettings.php.erb
index 75a17ebd3e0976b40ff6151096859ea976c7866c..d26a0d0bb1813df8f3f6b8ffd6d1cd1031efb348 100644 (file)
@@ -54,6 +54,15 @@ $wgEmailAuthentication = true;
 
 $wgEnotifUseJobQ       = true;
 
 
 $wgEnotifUseJobQ       = true;
 
+$wgSMTP = [
+  "host" => "localhost",
+  "socket_options" => [
+    "ssl" => [
+      "verify_peer_name" => false
+    ]
+  ]
+];
+
 ## Database settings
 $wgDBtype           = "mysql";
 $wgDBserver         = "<%= @database_params[:host] %>";
 ## Database settings
 $wgDBtype           = "mysql";
 $wgDBserver         = "<%= @database_params[:host] %>";
@@ -129,7 +138,7 @@ $wgShellLocale = "en_US.utf8";
 ## Set $wgCacheDirectory to a writable directory on the web server
 ## to make your wiki go slightly faster. The directory should not
 ## be publically accessible from the web.
 ## Set $wgCacheDirectory to a writable directory on the web server
 ## to make your wiki go slightly faster. The directory should not
 ## be publically accessible from the web.
-#$wgCacheDirectory = "$IP/cache";
+$wgCacheDirectory = "$IP/cache";
 
 # Site language code, should be one of the list in ./languages/Names.php
 $wgLanguageCode = "en";
 
 # Site language code, should be one of the list in ./languages/Names.php
 $wgLanguageCode = "en";
@@ -222,10 +231,9 @@ $wgNamespacesWithSubpages[NS_MAIN] = true;
 # DNS Blacklists to use
 $wgEnableDnsBlacklist = true;
 $wgDnsBlacklistUrls = [
 # DNS Blacklists to use
 $wgEnableDnsBlacklist = true;
 $wgDnsBlacklistUrls = [
-  'proxies.dnsbl.sorbs.net.',
-  'opm.tornevall.org.',
+  'http.dnsbl.sorbs.net.',
   'xbl.spamhaus.org.',
   'xbl.spamhaus.org.',
-  'dnsbl-2.uceprotect.net.'
+  'dnsbl-1.uceprotect.net.'
 ];
 
 # Require validated email to edit
 ];
 
 # Require validated email to edit
@@ -383,7 +391,8 @@ $wgForceUIMsgAsContentMsg = array( 'mainpage-url', 'mapfeatures-url', 'contribut
 <% end -%>
 
 <% if @name == "wiki.openstreetmap.org" -%>
 <% end -%>
 
 <% if @name == "wiki.openstreetmap.org" -%>
-# Placeholder for the wiki.openstreetmap.org specific config
+# wiki.openstreetmap.org specific config loaded after extensions
+$wgRCWatchCategoryMembership = true;
 <% end -%>
 
 <% if not(@mediawiki[:private_accounts]) and not(@mediawiki[:private_site]) -%>
 <% end -%>
 
 <% if not(@mediawiki[:private_accounts]) and not(@mediawiki[:private_site]) -%>
@@ -423,4 +432,4 @@ unset( $wgGroupsRemoveFromSelf['autoconfirmed'] );
 # Increase curl timeout to allow parsoid requests to heavy pages like Map Features
 # Mediawiki 1.38 has fix to allow this to be set by $wgVirtualRestConfig
 # https://phabricator.wikimedia.org/T285478
 # Increase curl timeout to allow parsoid requests to heavy pages like Map Features
 # Mediawiki 1.38 has fix to allow this to be set by $wgVirtualRestConfig
 # https://phabricator.wikimedia.org/T285478
-$wgHTTPTimeout = 180;
+$wgHTTPTimeout = 240;