Guest User

Untitled

a guest
Mar 1st, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => 'xxx',
  4. 'passwordsalt' => 'xxx',
  5. 'secret' => 'xxx',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'xxx',
  9. 1 => 'xxx',
  10. 2 => 'xxx',
  11. ),
  12. 'datadirectory' => '/var/www/html/data/',
  13. 'overwrite.cli.url' => 'xxx',
  14. 'dbtype' => 'mysql',
  15. 'version' => '20.0.8.1',
  16. 'dbname' => 'cloud',
  17. 'dbhost' => 'localhost',
  18. 'dbport' => '',
  19. 'dbtableprefix' => 'oc_',
  20. 'dbuser' => 'nextcloud',
  21. 'dbpassword' => 'xxx',
  22. 'installed' => true,
  23. 'memcache.local' => '\\OC\\Memcache\\APCu',
  24. 'memcache.distributed' => '\\OC\\Memcache\\Memcached',
  25. 'memcached_servers' =>
  26. array (
  27. 0 =>
  28. array (
  29. 0 => 'localhost',
  30. 1 => 11211,
  31. ),
  32. ),
  33. 'force_language' => 'de',
  34. 'theme' => '',
  35. 'mail_smtpmode' => 'smtp',
  36. 'mail_from_address' => 'xxx',
  37. 'mail_domain' => 'malorg.de',
  38. 'mail_smtpsecure' => 'tls',
  39. 'mail_smtphost' => 'xxx',
  40. 'mail_smtpport' => '25',
  41. 'maintenance' => false,
  42. 'loglevel' => 2,
  43. 'updater.release.channel' => 'stable',
  44. 'twofactor_enforced' => 'false',
  45. 'twofactor_enforced_groups' =>
  46. array (
  47. 0 => 'admin',
  48. ),
  49. 'twofactor_enforced_excluded_groups' =>
  50. array (
  51. ),
  52. 'mail_sendmailmode' => 'smtp',
  53. 'mail_smtpauthtype' => 'LOGIN',
  54. 'mail_smtpauth' => 1,
  55. 'mail_smtpname' => 'xxx',
  56. 'mail_smtppassword' => 'xxx',
  57. 'encryption.legacy_format_support' => true,
  58. 'encryption.key_storage_migrated' => false,
  59. 'updater.secret' => 'xxx',
  60. );
Add Comment
Please, Sign In to add comment