-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathLocalSettings.wbs.php
33 lines (25 loc) · 1.06 KB
/
LocalSettings.wbs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
# JobRunner instance is assumed by default, so jobs on request is disabled
$wgJobRunRate = 0;
# File Uploads enabled by default
$wgEnableUploads = true;
# Logs
# TODO: Explore simply logging to stdout/stderr so these appear in Docker logs
$wgDebugLogGroups = array(
'resourceloader' => '/var/log/mediawiki/mw.resourceloader.log',
'exception' => '/var/log/mediawiki/mw.exception.log',
'error' => '/var/log/mediawiki/mw.error.log',
'fatal' => '/var/log/mediawiki/mw.fatal.log',
);
$wgDebugLogFile = '/var/log/mediawiki/mw.debug.log';
$wgArticlePath = "/wiki/$1";
# Add configuration values here or above which should be set before extensions are loaded
# Load extensions if present, alphabetically ordered by filename
foreach (glob("LocalSettings.d/*.php") as $filename)
{
include $filename;
}
##############################################################################
# End of generated LocalSettings.php
##############################################################################
# Add configuration values below which should be set after extensions are loaded