Advertisement
Guest User

Untitled

a guest
Aug 17th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. <?php
  2. if ( !defined( 'MEDIAWIKI' ) ) {
  3. exit;
  4. }
  5. $wgSitename = "Ayty CRM Ltda";
  6. $wgMetaNamespace = "Ayty_CRM_Ltda";
  7. $wgScriptPath = "";
  8. $wgServer = "http://mediawiki.aytycrm.com.br";
  9. $wgResourceBasePath = $wgScriptPath;
  10. $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
  11. $wgEnableEmail = false;
  12. $wgEnableUserEmail = true; # UPO
  13. $wgEmergencyContact = "infra@aytycrm.com.br";
  14. $wgPasswordSender = "infra@aytycrm.com.br";
  15. $wgEnotifUserTalk = false; # UPO
  16. $wgEnotifWatchlist = false; # UPO
  17. $wgEmailAuthentication = true;
  18. $wgDBtype = "mysql";
  19. $wgDBserver = "localhost";
  20. $wgDBname = "wikidatabase";
  21. $wgDBuser = "wiki";
  22. $wgDBpassword = "frutinha";
  23. $wgDBprefix = "ayty_";
  24. $wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=utf8";
  25. $wgDBmysql5 = false;
  26. $wgMainCacheType = CACHE_ACCEL;
  27. $wgMemCachedServers = [];
  28. $wgEnableUploads = true;
  29. $wgUseInstantCommons = false;
  30. $wgShellLocale = "en_US.utf8";
  31. $wgLanguageCode = "pt-br";
  32. $wgSecretKey = "99c79ce16017a936c4d06dd48bdf1da6bd8c9c0b8e2a62b9cde25822aa882442";
  33. $wgAuthenticationTokenVersion = "1";
  34. $wgUpgradeKey = "4826a8b73ee6ad97";
  35. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  36. $wgRightsUrl = "";
  37. $wgRightsText = "Domío púo";
  38. $wgRightsIcon = "$wgResourceBasePath/resources/assets/licenses/public-domain.png";
  39. $wgDiff3 = "/usr/bin/diff3";
  40. $wgGroupPermissions['*']['createaccount'] = false;
  41. $wgGroupPermissions['*']['read'] = false;
  42. $wgDefaultSkin = "vector";
  43. wfLoadSkin( 'CologneBlue' );
  44. wfLoadSkin( 'Modern' );
  45. wfLoadSkin( 'MonoBook' );
  46. wfLoadSkin( 'Vector' );
  47. require_once ("$IP/extensions/LdapAuthentication/LdapAuthentication.php");
  48. $wgAuth = new LdapAuthenticationPlugin();
  49. $wgLDAPDomainNames = array('aytycrm');
  50. $wgLDAPServerNames = array('aytycrm' => 'ad01.aytycrm.com.br');
  51. $wgLDAPSearchStrings = array('aytycrm' => 'aytycrm\\USER-NAME');
  52. $wgLDAPEncryptionType = array('aytycrm' => 'clear');
  53. $wgLDAPSearchAttributes = array('aytycrm' => 'sAMAccountName' );
  54. $wgLDAPUserBaseDNs = array('aytycrm' => 'OU=Users,OU=AYTYCRM,DC=aytycrm,DC=com,DC=br');
  55. $wgLDAPProxyAgent = array('aytycrm' => 'CN=bind,OU=Especiais,OU=Users,OU=AYTYCRM,DC=aytycrm,DC=com,DC=br');
  56. $wgLDAPProxyAgentPassword = array('aytycrm' => 'gigio_viadinho');
  57. $wgLDAPPort = array('aytycrm' => 389);
  58. $wgLDAPUseSSL = false;
  59. $wgLDAPUseLocal = false;
  60. $wgMinimalPasswordLength = 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement