Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Commit

Permalink
Reset on-disk config to old master state
Browse files Browse the repository at this point in the history
The Kubernetes setup does not use this on-disk config file any more, so
there is no reason to update it any more. This is also the only
difference from master, so resetting this to the state expected by
master lets us merge the k8s branch to master without breaking existing
users.
  • Loading branch information
gwicke authored and d00rman committed Jun 13, 2017
1 parent bbd40f0 commit 02b517b
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions conf/mediawiki/CustomSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,12 @@
$wgDefaultUserOptions['visualeditor-enable'] = 1;
$wgHiddenPrefs[] = 'visualeditor-enable';
#$wgDefaultUserOptions['visualeditor-enable-experimental'] = 1;
$wgVirtualRestConfig['modules']['restbase'] = array(
'url' => 'http://localhost:7231',
$wgVirtualRestConfig['modules']['parsoid'] = array(
// URL to the Parsoid instance
// Use port 8142 if you use the Debian package
'url' => 'http://mediawiki-node-services.docker:8142',
// Parsoid "domain", see below (optional)
'domain' => 'localhost',
'forwardCookies' => true,
'parsoidCompat' => false
// Parsoid "prefix", see below (optional)
'prefix' => 'localhost'
);

/**
* Math
*/
$wgDefaultUserOptions['math'] = 'mathml';
$wgMathFullRestbaseURL = 'http://localhost:7231/localhost/';
wfLoadExtension( 'Math' );

?>

0 comments on commit 02b517b

Please sign in to comment.