Advertisement
inoculator

Horde Conf.php Snipplet

May 7th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <?php
  2. /* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
  3. // $Id: [xxx] $
  4. $conf['vhosts'] = false;
  5. $conf['debug_level'] = E_ALL & ~E_NOTICE;
  6. $conf['max_exec_time'] = 0;
  7. $conf['compress_pages'] = true;
  8. $conf['secret_key'] = '[xxxx]';
  9. $conf['umask'] = 077;
  10. $conf['testdisable'] = true;
  11. $conf['use_ssl'] = 2;
  12. $conf['server']['name'] = $_SERVER['SERVER_NAME'];
  13. $conf['urls']['token_lifetime'] = 30;
  14. $conf['urls']['hmac_lifetime'] = 30;
  15. $conf['urls']['pretty'] = false;
  16. $conf['safe_ips'] = array();
  17. $conf['session']['name'] = 'Horde';
  18. $conf['session']['use_only_cookies'] = true;
  19. $conf['session']['timeout'] = 0;
  20. $conf['session']['cache_limiter'] = 'nocache';
  21. $conf['session']['max_time'] = 72000;
  22. $conf['cookie']['domain'] = $_SERVER['SERVER_NAME'];
  23. $conf['cookie']['path'] = '/';
  24. $conf['sql']['username'] = '[xxx]';
  25. $conf['sql']['password'] = '[xxx]';
  26. $conf['sql']['hostspec'] = '[xxx]';
  27. $conf['sql']['port'] = 3306;
  28. $conf['sql']['protocol'] = 'tcp';
  29. $conf['sql']['database'] = '[xxx]';
  30. $conf['sql']['charset'] = 'utf-8';
  31. $conf['sql']['ssl'] = false;
  32. $conf['sql']['splitread'] = false;
  33. $conf['sql']['logqueries'] = true;
  34. $conf['sql']['phptype'] = 'mysql';
  35. $conf['nosql']['phptype'] = false;
  36. $conf['ldap']['useldap'] = false;
  37. $conf['auth']['admins'] = array('[xxx]');
  38. $conf['auth']['checkip'] = true;
  39. [.....]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement