Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

hallowelt/docker-bluespice-parsoid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Useage

docker run -p 8000:8000 -d bluespice/parsoid:REL1_31

MediaWiki LocalSettings config

Install instruction for VisualEditor can be found here: https://www.mediawiki.org/wiki/Extension:VisualEditor

This is a auto-configuration-setup of parsoid. There is no need to configure the calling MediaWiki instance with parsoid. Instead you will need to pass the wikis API endpoint url as a Base64 encoded string within the domain field.

Example:

$fullPath = $GLOBALS['wgServer'] . $GLOBALS['wgScriptPath'];
$encFullPath = base64_encode( $fullPath );
$wgVirtualRestConfig['modules']['parsoid'] = [
'url' => 'http://<parsoidcontainername>:8000',
'domain' => $encFullPath,
'forwardCookies' => true
];
unset( $fullPath );
unset( $encFullPath );

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •