Advertisement
Guest User

Untitled

a guest
May 18th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => '',
  4. 'passwordsalt' => '',
  5. 'secret' => '',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'domain.com',
  9. 1 => 'sub.domain.com',
  10. ),
  11. 'datadirectory' => '/www/htdocs/xyz/nextcloud/data',
  12. 'overwrite.cli.url' => 'http://domain.com/nextcloud',
  13. 'dbtype' => 'mysql',
  14. 'version' => '16.0.1.1',
  15. 'dbname' => '',
  16. 'dbhost' => 'localhost',
  17. 'dbport' => '',
  18. 'dbtableprefix' => '',
  19. 'mysql.utf8mb4' => false,
  20. 'dbuser' => '',
  21. 'dbpassword' => '',
  22. 'installed' => true,
  23. 'tempdirectory' => '/www/htdocs/xyz/nextcloud/tmp/',
  24. 'maintenance' => false,
  25. 'theme' => '',
  26. 'loglevel' => 2,
  27. 'mail_from_address' => '',
  28. 'mail_smtpmode' => 'smtp',
  29. 'mail_smtpsecure' => 'ssl',
  30. 'mail_domain' => 'sub.domain.com',
  31. 'mail_smtphost' => 'xyz.kasserver.com',
  32. 'mail_smtpport' => '25',
  33. 'mail_smtpauthtype' => 'LOGIN',
  34. 'mail_smtpauth' => 1,
  35. 'mail_smtpname' => '',
  36. 'mail_smtppassword' => '',
  37. 'updater.release.channel' => 'stable',
  38. 'updater.secret' => '',
  39. 'app_install_overwrite' =>
  40. array (
  41. 0 => 'calendar',
  42. ),
  43. 'ldapIgnoreNamingRules' => false,
  44. 'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
  45. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement