]> git.openstreetmap.org Git - chef.git/blob - cookbooks/mediawiki/templates/default/LocalSettings.php.erb
18dc6aec98f5a7f52f4a977d2bbc34ea61cc4919
[chef.git] / cookbooks / mediawiki / templates / default / LocalSettings.php.erb
1 <?php
2 # DO NOT EDIT - This file is being maintained by Chef
3
4 # Protect against web entry
5 if ( !defined( 'MEDIAWIKI' ) ) {
6         exit;
7 }
8
9 ## Uncomment this to disable output compression
10 # $wgDisableOutputCompression = true;
11
12 $wgSitename      = '<%= @mediawiki[:sitename] %>';
13 $wgMetaNamespace = '<%= @mediawiki[:metanamespace] %>';
14
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
20 $wgScriptPath       = "/w";
21 $wgArticlePath      = '/wiki/$1';
22 $wgUsePathInfo      = true;
23 $wgScriptExtension  = ".php";
24
25 ## The protocol and server name to use in fully-qualified URLs
26 $wgServer           = "//<%= @name %>";
27 $wgInternalServer   = 'https://<%= @name %>';
28
29 $wgSecureLogin = true;
30 $wgDefaultUserOptions['prefershttps'] = 1;
31 $wgCookieSecure = true;
32
33 ## The relative URL path to the skins directory
34 $wgStylePath        = "$wgScriptPath/skins";
35
36 ## The relative URL path to the logo.  Make sure you change this from the default,
37 ## or else you'll overwrite your logo when you upgrade!
38 $wgLogo             = "<%= @mediawiki[:logo] %>";
39
40 ## UPO means: this is also a user preference option
41
42 $wgEnableEmail      = true;
43 $wgEnableUserEmail  = true; # UPO
44
45 $wgEmergencyContact = "<%= @mediawiki[:email_contact] %>";
46 $wgPasswordSender   = "<%= @mediawiki[:email_sender] %>";
47 $wgPasswordSenderName = "<%= @mediawiki[:email_sender_name] %>"; //Replaced by MediaWiki:Emailsender in v1.23.0
48
49 $wgEnotifUserTalk      = true; # UPO
50 $wgEnotifWatchlist     = true; # UPO
51 $wgEmailAuthentication = true;
52
53 $wgEnotifUseJobQ       = true;
54
55 ## Database settings
56 $wgDBtype           = "mysql";
57 $wgDBserver         = "<%= @database_params[:host] %>";
58 $wgDBname           = "<%= @database_params[:name] %>";
59 $wgDBuser           = "<%= @database_params[:username] %>";
60 $wgDBpassword       = "<%= @database_params[:password] %>";
61
62 # MySQL specific settings
63 $wgDBprefix         = "";
64
65 # MySQL table options to use during installation or update
66 $wgDBTableOptions   = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
67
68 # Experimental charset support for MySQL 5.0.
69 $wgDBmysql5 = false;
70
71 ## Shared memory settings
72 $wgMainCacheType    = CACHE_MEMCACHED;
73 $wgMemCachedServers = array('127.0.0.1:11211');
74 $wgSessionsInObjectCache = TRUE;
75
76 ## To enable image uploads, make sure the 'images' directory
77 ## is writable, then set this to true:
78 $wgEnableUploads  = true;
79 $wgUseImageMagick = true;
80 $wgImageMagickConvertCommand = "/usr/bin/convert";
81
82 $wgGenerateThumbnailOnParse = false;
83 $wgMaxImageArea = 125000000;
84 $wgMaxShellMemory = 5524000;
85 $wgMaxShellFileSize = 819200;
86 $wgMaxShellTime = 360;
87 $wgMaxShellWallClockTime = 360;
88
89 # Allow some more upload extensions
90 $wgFileExtensions[] = 'doc';
91 $wgFileExtensions[] = 'pdf';
92 $wgFileExtensions[] = 'odt';
93 $wgFileExtensions[] = 'odp';
94 $wgFileExtensions[] = 'ods';
95 $wgFileExtensions[] = 'svg';
96 $wgFileExtensions[] = 'osm';
97 <% @mediawiki[:extra_file_extensions].each do |mw_extra_file_extension| -%>
98         $wgFileExtensions[] = '<%= mw_extra_file_extension %>';
99 <% end -%>
100
101 # Add OSM XML file format per http://www.iana.org/assignments/media-types/media-types.xhtml
102 # Shout out to Paul Norman for reserving this.
103 # Helps MimeMagic determine XML-based formats and chooses the correct MimeType
104 # for .osm files.
105 $wgXMLMimeTypes[] = array('osm' => 'application/vnd.openstreetmap.data+xml');
106
107 $wgTrustedMediaFormats[] = 'application/vnd.openstreetmap.data+xml';
108
109 $wgSVGConverters = array( 'rsvg' => '/usr/bin/rsvg-convert -w $width -h $height -o $output $input');
110 $wgSVGConverter = 'rsvg';
111 $wgSVGMaxSize = 2000;
112
113 # InstantCommons allows wiki to use images from https://commons.wikimedia.org
114 <% if @mediawiki[:commons] -%>
115 $wgUseInstantCommons  = true;
116 <% else -%>
117 $wgUseInstantCommons  = false;
118 <% end -%>
119
120 ## If you use ImageMagick (or any other shell command) on a
121 ## Linux server, this will need to be set to the name of an
122 ## available UTF-8 locale
123 $wgShellLocale = "en_US.utf8";
124
125 ## If you want to use image uploads under safe mode,
126 ## create the directories images/archive, images/thumb and
127 ## images/temp, and make them all writable. Then uncomment
128 ## this, if it's not already uncommented:
129 #$wgHashedUploadDirectory = false;
130
131 ## Set $wgCacheDirectory to a writable directory on the web server
132 ## to make your wiki go slightly faster. The directory should not
133 ## be publically accessible from the web.
134 #$wgCacheDirectory = "$IP/cache";
135
136 # Site language code, should be one of the list in ./languages/Names.php
137 $wgLanguageCode = "en";
138
139 $wgSecretKey = '<%= @node[:mediawiki][:sites][@name][:wgSecretKey] %>';
140
141 # Site upgrade key. Must be set to a string (default provided) to turn on the
142 # web installer while LocalSettings.php is in place
143 #$wgUpgradeKey = "6ad907e74fc65836";
144
145 ## Default skin: you can change the default skin. Use the internal symbolic
146 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook', 'vector':
147 $wgDefaultSkin = "<%= @mediawiki[:skin] %>";
148
149 ## For attaching licensing metadata to pages, and displaying an
150 ## appropriate copyright notice / icon. GNU Free Documentation
151 ## License and Creative Commons licenses are supported so far.
152 $wgRightsPage = "Wiki_content_license"; # Set to the title of a wiki page that describes your license/copyright
153 $wgRightsUrl  = "https://creativecommons.org/licenses/by-sa/2.0/";
154 $wgRightsText = "Creative Commons Attribution-ShareAlike 2.0 license";
155 $wgRightsIcon = "/cc-wiki.png";
156
157 # Path to the GNU diff3 utility. Used for conflict resolution.
158 $wgDiff3 = "/usr/bin/diff3";
159
160 $wgExternalDiffEngine = 'wikidiff2';
161
162 # Query string length limit for ResourceLoader. You should only set this if
163 # your web server has a query string length limit (then set it to that limit),
164 # or if you have suhosin.get.max_value_length set in php.ini (then set it to
165 # that value)
166 $wgResourceLoaderMaxQueryLength = -1;
167
168 # End of automatically generated settings.
169 # Add more configuration options below.
170
171 # Only Allow Signed-in users to edit
172 $wgGroupPermissions['*']['edit'] = false;
173
174 # Only allow autoconfirmed for a few actions
175 $wgGroupPermissions['user']['move'] = false;
176 $wgGroupPermissions['user']['movefile'] = false;
177 $wgGroupPermissions['user']['move-categorypages'] = false;
178 $wgGroupPermissions['user']['upload'] = false;
179 $wgGroupPermissions['autoconfirmed']['move'] = true;
180 $wgGroupPermissions['autoconfirmed']['movefile'] = true;
181 $wgGroupPermissions['autoconfirmed']['move-categorypages'] = true;
182 $wgGroupPermissions['autoconfirmed']['upload'] = true;
183
184 # Allow bureaucrat group access to oversight options
185 $wgGroupPermissions['bureaucrat']['hideuser'] = true;
186 $wgGroupPermissions['bureaucrat']['deletelogentry'] = true;
187 $wgGroupPermissions['bureaucrat']['deleterevision'] = true;
188 $wgGroupPermissions['bureaucrat']['suppressrevision'] = true;
189 $wgGroupPermissions['bureaucrat']['suppressionlog'] = true;
190
191 <% if @mediawiki[:private_accounts] -%>
192 # Prevent new user registrations except by existing users
193 $wgGroupPermissions['*']['createaccount'] = false;
194 $wgGroupPermissions['user']['createaccount'] = true;
195 <% end -%>
196 <% if @mediawiki[:private_site] -%>
197
198 # Disable reading by anonymous users
199 $wgGroupPermissions['*']['read'] = false;
200
201 # Allow anonymous users to access the login page
202 $wgWhitelistRead = array ("Special:Userlogin");
203
204 # Prevent new user registrations except by sysops
205 $wgGroupPermissions['*']['createaccount'] = false;
206
207 # Restrict access to the upload directory
208 $wgUploadPath = "$wgScriptPath/img_auth.php";
209 <% end -%>
210
211 # Allow Subpages on Main Namespace
212 $wgNamespacesWithSubpages[NS_MAIN] = true;
213
214 # DNS Blacklists to use
215 $wgEnableDnsBlacklist = true;
216 $wgDnsBlacklistUrls = array( 'proxies.dnsbl.sorbs.net.', 'opm.tornevall.org.', 'xbl.spamhaus.org.', 'dnsbl-3.uceprotect.net.' );
217
218 # Require validated email to edit
219 $wgEmailConfirmToEdit = true;
220
221 # Extend autoblock period
222 $wgAutoblockExpiry = 7776000; // 90 days
223
224 # Spam filter regex
225 $wgSpamRegex = '/\b(gmail|dell|asus|eps(o|0)n|br(o|0)ther|can(o|0)n|hp|k(o|0)dak|lexmark|mcafee|bitdefender|n(o|0)rt(o|0)n( 360)?|avira|kaspersky|avg|avast|micr(o|0)s(o|0)ft|(o|0)utl(o|0)(o|0)k|printer|netgear( r(o|0)uter)?|quickb(o|0)(o|0)ks( payr(o|0)ll)?)( antivirus)?( helpline| cust(o|0)mer|( technical| tech)| cust(o|0)mer service)? (supp(o|0)rt number|ph(o|0)ne number|supp(o|0)rt ph(o|0)ne number|care number|helpdesk number)\b/i';
226
227 # Autopromote users to autoconfirmed
228 $wgAutoConfirmAge = 345600; // 4 days
229 $wgAutoConfirmCount = 10;
230
231 # Disable Hit Counter for Performance
232 $wgDisableCounters = TRUE;
233 # Disable IP in Header to avoid cache issue
234 $wgShowIPinHeader = FALSE;
235
236 # Job Runs by cron
237 $wgJobRunRate = 0;
238
239 # dissolves double redirects automatically
240 $wgFixDoubleRedirects = TRUE;
241
242 # Allow external images from a few sites
243 $wgAllowExternalImagesFrom = array( 'http://tile.openstreetmap.org/', 'http://svenanders.openstreetmap.de/', 'http://josm.openstreetmap.de/', 'http://trac.openstreetmap.org/', 'http://rweait.dev.openstreetmap.org/' );
244
245 $wgNoFollowDomainExceptions = array( 'www.openstreetmap.org', 'josm.openstreetmap.de', 'taginfo.openstreetmap.org', 'blog.openstreetmap.org', 'wiki.osmfoundation.org' );
246
247 # FIXME - move to specific
248 $wgForceUIMsgAsContentMsg = array( 'mainpage-url', 'portal-url', 'mapfeatures-url', 'helppage' );
249
250 # FIXME - move to specific
251 $wgAllowUserJs = TRUE;
252 $wgAllowUserCss = TRUE;
253
254 # FIXME - move to specific
255 # DE
256 define('NS_LANG_DE', 200);
257 $wgExtraNamespaces[NS_LANG_DE] = 'DE';
258 $wgNamespacesWithSubpages[NS_LANG_DE] = TRUE;
259 $wgContentNamespaces[] = NS_LANG_DE;
260 define('NS_LANG_DE_TALK', 201);
261 $wgExtraNamespaces[NS_LANG_DE_TALK] = 'DE_talk';
262 $wgNamespacesWithSubpages[NS_LANG_DE_TALK] = TRUE;
263
264 # FR
265 define('NS_LANG_FR', 202);
266 $wgExtraNamespaces[NS_LANG_FR] = 'FR';
267 $wgNamespacesWithSubpages[NS_LANG_FR] = TRUE;
268 $wgContentNamespaces[] = NS_LANG_FR;
269 define('NS_LANG_FR_TALK', 203);
270 $wgExtraNamespaces[NS_LANG_FR_TALK] = 'FR_talk';
271 $wgNamespacesWithSubpages[NS_LANG_FR_TALK] = TRUE;
272
273 # ES
274 define('NS_LANG_ES', 204);
275 $wgExtraNamespaces[NS_LANG_ES] = 'ES';
276 $wgNamespacesWithSubpages[NS_LANG_ES] = TRUE;
277 $wgContentNamespaces[] = NS_LANG_ES;
278 define('NS_LANG_ES_TALK', 205);
279 $wgExtraNamespaces[NS_LANG_ES_TALK] = 'ES_talk';
280 $wgNamespacesWithSubpages[NS_LANG_ES_TALK] = TRUE;
281
282 # IT
283 define('NS_LANG_IT', 206);
284 $wgExtraNamespaces[NS_LANG_IT] = 'IT';
285 $wgNamespacesWithSubpages[NS_LANG_IT] = TRUE;
286 $wgContentNamespaces[] = NS_LANG_IT;
287 define('NS_LANG_IT_TALK', 207);
288 $wgExtraNamespaces[NS_LANG_IT_TALK] = 'IT_talk';
289 $wgNamespacesWithSubpages[NS_LANG_IT_TALK] = TRUE;
290
291 # NL
292 define('NS_LANG_NL', 208);
293 $wgExtraNamespaces[NS_LANG_NL] = 'NL';
294 $wgNamespacesWithSubpages[NS_LANG_NL] = TRUE;
295 $wgContentNamespaces[] = NS_LANG_NL;
296 define('NS_LANG_NL_TALK', 209);
297 $wgExtraNamespaces[NS_LANG_NL_TALK] = 'NL_talk';
298 $wgNamespacesWithSubpages[NS_LANG_NL_TALK] = TRUE;
299
300 # RU
301 define('NS_LANG_RU', 210);
302 $wgExtraNamespaces[NS_LANG_RU] = 'RU';
303 $wgNamespacesWithSubpages[NS_LANG_RU] = TRUE;
304 $wgContentNamespaces[] = NS_LANG_RU;
305 define('NS_LANG_RU_TALK', 211);
306 $wgExtraNamespaces[NS_LANG_RU_TALK] = 'RU_talk';
307 $wgNamespacesWithSubpages[NS_LANG_RU_TALK] = TRUE;
308
309 # JA
310 define('NS_LANG_JA', 212);
311 $wgExtraNamespaces[NS_LANG_JA] = 'JA';
312 $wgNamespacesWithSubpages[NS_LANG_JA] = TRUE;
313 $wgContentNamespaces[] = NS_LANG_JA;
314 define('NS_LANG_JA_TALK', 213);
315 $wgExtraNamespaces[NS_LANG_JA_TALK] = 'JA_talk';
316 $wgNamespacesWithSubpages[NS_LANG_JA_TALK] = TRUE;
317
318 $wgNamespacesToBeSearchedDefault[NS_LANG_DE] = TRUE;
319 $wgNamespacesToBeSearchedDefault[NS_LANG_FR] = TRUE;
320 $wgNamespacesToBeSearchedDefault[NS_LANG_ES] = TRUE;
321 $wgNamespacesToBeSearchedDefault[NS_LANG_IT] = TRUE;
322 $wgNamespacesToBeSearchedDefault[NS_LANG_NL] = TRUE;
323 $wgNamespacesToBeSearchedDefault[NS_LANG_RU] = TRUE;
324 $wgNamespacesToBeSearchedDefault[NS_LANG_JA] = TRUE;
325
326
327 # Raise expensive lua (and other function) call limits to match WP
328 # Docs:  https://www.mediawiki.org/wiki/Manual:$wgExpensiveParserFunctionLimit
329 # Wikipedia's Config:  https://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php
330 $wgExpensiveParserFunctionLimit = 500;
331
332
333 <% if @mediawiki[:site_notice] -%>
334 $wgSiteNotice = "<%= @mediawiki[:site_notice] %>";
335 <% end -%>
336 <% if @mediawiki[:site_readonly] -%>
337 $wgReadOnly = "<%= @mediawiki[:site_readonly] %>";
338 <% end -%>
339
340 <% Dir.glob("#{@directory}/LocalSettings.d/*.php") do |file| -%>
341 <%= "require_once('#{file}');" %>
342 <% end -%>