Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2. $wgServer = "http://localhost:3000";
  3. $wgScriptPath = "";
  4. $wgResourceBasePath = $wgScriptPath;
  5. ## Database settings
  6. $wgDBtype = "mysql";
  7. $wgDBserver = "localhost";
  8. $wgDBname = "newwiki";
  9. $wgDBuser = "root";
  10. $wgDBpassword = "hahaha";
  11. $wgImageMagickConvertCommand = "/usr/bin/convert";
  12.  
  13. $wgVirtualRestConfig['modules']['parsoid'] = array(
  14. // URL to the Parsoid instance
  15. // Use port 8142 if you use the Debian package
  16. 'url' => 'http://localhost:8142',
  17. // Parsoid "domain", see below (optional)
  18. // 'domain' => 'localhost',
  19. // Parsoid "prefix", see below (optional)
  20. // 'prefix' => 'localhost'
  21. );
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement