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 $wgFileExtensions[] = 'odg';
99 <% @mediawiki[:extra_file_extensions].each do |mw_extra_file_extension| -%>
100 $wgFileExtensions[] = '<%= mw_extra_file_extension %>';
103 # Add OSM XML file format per http://www.iana.org/assignments/media-types/media-types.xhtml
104 # Shout out to Paul Norman for reserving this.
105 # Helps MimeMagic determine XML-based formats and chooses the correct MimeType
107 $wgXMLMimeTypes[] = array('osm' => 'application/vnd.openstreetmap.data+xml');
109 $wgTrustedMediaFormats[] = 'application/vnd.openstreetmap.data+xml';
111 $wgSVGConverters = array( 'rsvg' => '/usr/bin/rsvg-convert -w $width -h $height -o $output $input');
112 $wgSVGConverter = 'rsvg';
113 $wgSVGMaxSize = 2000;
115 <% if @mediawiki[:commons] -%>
116 # Enable use of images from https://commons.wikimedia.org
117 $wgForeignFileRepos[] = [
118 'class' => ForeignAPIRepo::class,
119 'name' => 'wikimediacommons',
120 'apibase' => 'https://commons.wikimedia.org/w/api.php',
121 'url' => 'https://upload.wikimedia.org/wikipedia/commons',
122 'thumbUrl' => 'https://upload.wikimedia.org/wikipedia/commons/thumb',
124 'transformVia404' => true,
125 'fetchDescription' => true,
126 'descriptionCacheExpiry' => 604800,
127 'apiThumbCacheExpiry' => 604800,
131 ## If you use ImageMagick (or any other shell command) on a
132 ## Linux server, this will need to be set to the name of an
133 ## available UTF-8 locale
134 $wgShellLocale = "en_US.utf8";
136 ## If you want to use image uploads under safe mode,
137 ## create the directories images/archive, images/thumb and
138 ## images/temp, and make them all writable. Then uncomment
139 ## this, if it's not already uncommented:
140 #$wgHashedUploadDirectory = false;
142 ## Set $wgCacheDirectory to a writable directory on the web server
143 ## to make your wiki go slightly faster. The directory should not
144 ## be publically accessible from the web.
145 #$wgCacheDirectory = "$IP/cache";
147 # Site language code, should be one of the list in ./languages/Names.php
148 $wgLanguageCode = "en";
150 ## Enable setting the page content language by users
151 $wgPageLanguageUseDB = true;
152 $wgGroupPermissions['user']['pagelang'] = true;
154 $wgSecretKey = '<%= @secret_key %>';
156 # Site upgrade key. Must be set to a string (default provided) to turn on the
157 # web installer while LocalSettings.php is in place
158 #$wgUpgradeKey = "6ad907e74fc65836";
160 ## Default skin: you can change the default skin. Use the internal symbolic
161 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector':
162 $wgDefaultSkin = "<%= @mediawiki[:skin] %>";
164 ## For attaching licensing metadata to pages, and displaying an
165 ## appropriate copyright notice / icon. GNU Free Documentation
166 ## License and Creative Commons licenses are supported so far.
167 $wgRightsPage = "Wiki_content_license"; # Set to the title of a wiki page that describes your license/copyright
168 $wgRightsUrl = "https://creativecommons.org/licenses/by-sa/2.0/";
169 $wgRightsText = "Creative Commons Attribution-ShareAlike 2.0 license";
170 $wgRightsIcon = "/cc-wiki.png";
172 # Path to the GNU diff3 utility. Used for conflict resolution.
173 $wgDiff3 = "/usr/bin/diff3";
175 $wgExternalDiffEngine = 'wikidiff2';
177 # Query string length limit for ResourceLoader. You should only set this if
178 # your web server has a query string length limit (then set it to that limit),
179 # or if you have suhosin.get.max_value_length set in php.ini (then set it to
181 $wgResourceLoaderMaxQueryLength = -1;
183 # End of automatically generated settings.
184 # Add more configuration options below.
186 # Only Allow Signed-in users to edit
187 $wgGroupPermissions['*']['edit'] = false;
189 # Allow bureaucrat group access to oversight options
190 $wgGroupPermissions['bureaucrat']['hideuser'] = true;
191 $wgGroupPermissions['bureaucrat']['deletelogentry'] = true;
192 $wgGroupPermissions['bureaucrat']['deleterevision'] = true;
193 $wgGroupPermissions['bureaucrat']['suppressrevision'] = true;
194 $wgGroupPermissions['bureaucrat']['suppressionlog'] = true;
196 # Since 1.32 MW introduced interface-admin group to separate all UI-related rights. This makes sense for bigger sites,
197 # but for OSM it makes more sense to keep group structure simple. Give all interface-admin rights to sysops.
198 # Also remove the interface-admin group to avoid confusion.
199 $wgGroupPermissions['sysop'] = array_merge( $wgGroupPermissions['sysop'], $wgGroupPermissions['interface-admin'] );
200 unset( $wgGroupPermissions['interface-admin'] );
201 unset( $wgRevokePermissions['interface-admin'] );
202 unset( $wgAddGroups['interface-admin'] );
203 unset( $wgRemoveGroups['interface-admin'] );
204 unset( $wgGroupsAddToSelf['interface-admin'] );
205 unset( $wgGroupsRemoveFromSelf['interface-admin'] );
207 # The v1.32+ gadget system also requires two additional rights
208 # See https://www.mediawiki.org/wiki/Extension:Gadgets
209 $wgGroupPermissions['sysop']['gadgets-edit'] = true;
210 $wgGroupPermissions['sysop']['gadgets-definition-edit'] = true;
212 <% if @mediawiki[:private_accounts] -%>
213 # Prevent new user registrations except by existing users
214 $wgGroupPermissions['*']['createaccount'] = false;
215 $wgGroupPermissions['user']['createaccount'] = true;
218 <% if @mediawiki[:private_site] -%>
219 # Disable reading by anonymous users
220 $wgGroupPermissions['*']['read'] = false;
222 # Allow anonymous users to access the login page
223 $wgWhitelistRead = array ("Special:Userlogin");
225 # Prevent new user registrations except by sysops
226 $wgGroupPermissions['*']['createaccount'] = false;
228 # Restrict access to the upload directory
229 $wgUploadPath = "$wgScriptPath/img_auth.php";
232 # Allow Subpages on Main Namespace
233 $wgNamespacesWithSubpages[NS_MAIN] = true;
235 # DNS Blacklists to use
236 $wgEnableDnsBlacklist = true;
237 $wgDnsBlacklistUrls = array( 'proxies.dnsbl.sorbs.net.', 'opm.tornevall.org.', 'xbl.spamhaus.org.', 'dnsbl-2.uceprotect.net.' );
239 # Require validated email to edit
240 $wgEmailConfirmToEdit = true;
242 # Extend autoblock period
243 $wgAutoblockExpiry = 7776000; // 90 days
245 # Disable Hit Counter for Performance
246 $wgDisableCounters = TRUE;
247 # Disable IP in Header to avoid cache issue
248 $wgShowIPinHeader = FALSE;
250 # Job Runs mostly by cron
251 $wgJobRunRate = 0.01;
253 # dissolves double redirects automatically
254 $wgFixDoubleRedirects = TRUE;
256 # Allow external images from a few sites
257 $wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'https://tile.openstreetmap.org', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
259 $wgNoFollowDomainExceptions = array( 'www.openstreetmap.org', 'josm.openstreetmap.de', 'taginfo.openstreetmap.org', 'blog.openstreetmap.org', 'wiki.osmfoundation.org' );
261 # FIXME - move to specific
262 $wgAllowUserJs = TRUE;
263 $wgAllowUserCss = TRUE;
265 # Raise expensive lua (and other function) call limits to match WP
266 # Docs: https://www.mediawiki.org/wiki/Manual:$wgExpensiveParserFunctionLimit
267 # Wikipedia's Config: https://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php
268 $wgExpensiveParserFunctionLimit = 500;
271 <% if @mediawiki[:site_notice] -%>
272 $wgSiteNotice = "<%= @mediawiki[:site_notice] %>";
274 <% if @mediawiki[:site_readonly] -%>
275 $wgReadOnly = "<%= @mediawiki[:site_readonly] %>";
279 <% Dir.glob("#{@directory}/LocalSettings.d/*.php") do |file| -%>
280 <%= "require_once('#{file}');" %>
283 <% if not(@mediawiki[:private_accounts]) and not(@mediawiki[:private_site]) -%>
284 # require user confirmation for certain actions
285 $wgGroupPermissions['user']['move'] = false;
286 $wgGroupPermissions['user']['movefile'] = false;
287 $wgGroupPermissions['user']['move-categorypages'] = false;
288 $wgGroupPermissions['user']['upload'] = false;
289 $wgGroupPermissions['autoconfirmed']['move'] = true;
290 $wgGroupPermissions['autoconfirmed']['movefile'] = true;
291 $wgGroupPermissions['autoconfirmed']['move-categorypages'] = true;
292 $wgGroupPermissions['autoconfirmed']['upload'] = true;
293 # Autopromote users to autoconfirmed
294 $wgAutoConfirmAge = 345600; // 4 days
295 $wgAutoConfirmCount = 10;
297 # user group "confirmed" with identical rights as "autoconfirmed", but assigned manually by sysops
298 $wgGroupPermissions['confirmed'] = $wgGroupPermissions['autoconfirmed'];
299 $wgAddGroups['sysop'][] = 'confirmed';
300 $wgRemoveGroups['sysop'][] = 'confirmed';
303 <% if @mediawiki[:private_accounts] or @mediawiki[:private_site] -%>
304 # disable automatic confirmation of users, grant all "autoconfirmed" rights to all users
305 $wgAutoConfirmAge = 0;
306 $wgAutoConfirmCount = 0;
307 $wgGroupPermissions['user'] = array_merge( $wgGroupPermissions['user'], $wgGroupPermissions['autoconfirmed'] );
309 unset( $wgGroupPermissions['autoconfirmed'] );
310 unset( $wgRevokePermissions['autoconfirmed'] );
311 unset( $wgAddGroups['autoconfirmed'] );
312 unset( $wgRemoveGroups['autoconfirmed'] );
313 unset( $wgGroupsAddToSelf['autoconfirmed'] );
314 unset( $wgGroupsRemoveFromSelf['autoconfirmed'] );