Advertisement
Guest User

.config/config.php

a guest
May 19th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => '...',
  4. 'passwordsalt' => '...',
  5. 'secret' => '...',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'my_domain.com',
  9. ),
  10. 'datadirectory' => '/var/www/nextcloud/data',
  11. 'dbtype' => 'mysql',
  12. 'version' => '21.0.1.1',
  13. 'overwrite.cli.url' => 'https://my_domain.com/nextcloud',
  14. 'dbname' => 'nextcloud',
  15. 'dbhost' => 'localhost',
  16. 'dbport' => '',
  17. 'dbtableprefix' => 'oc_',
  18. 'mysql.utf8mb4' => true,
  19. 'dbuser' => 'nextcloud_user',
  20. 'dbpassword' => '...',
  21. 'installed' => true,
  22. "log_type" => "file",
  23. "logfile" => "/var/log/nextcloud.log",
  24. 'logfilemode' => 0640,
  25. "loglevel" => "0",
  26. "logdateformat" => "F d, Y H:i:s",
  27. 'maintenance' => false,
  28. 'twofactor_enforced' => 'false',
  29. 'twofactor_enforced_groups' =>
  30. array (
  31. ),
  32. 'twofactor_enforced_excluded_groups' =>
  33. array (
  34. ),
  35. 'updater.secret' => '...',
  36. 'theme' => '',
  37. 'loglevel' => 2,
  38. 'filelocking.enabled' => false,
  39. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  40. 'redis' =>
  41. array (
  42. 'host' => 'localhost',
  43. 'port' => 6379,
  44. 'timeout' => 0.0,
  45. 'password' => '',
  46. ),
  47. );
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement