Advertisement
yoda2019

nextcloud-config

Apr 19th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => 'instancseid',
  4. 'passwordsalt' => 'oooosalty',
  5. 'secret' => '',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'localhost',
  9. 1 => 'aaaa',
  10. 2 => 'aaa',
  11. ),
  12. 'memcache.local' => '\\OC\\Memcache\\Redis',
  13. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  14. 'filelocking.enabled' => 'true',
  15. 'redis' =>
  16. array(
  17. 'host' => 'localhost',
  18. 'port' => 6379,
  19. 'timeout' => 0.0,
  20. ),
  21. 'datadirectory' => '/var/www/nextcloud/data',
  22. 'dbtype' => 'mysql',
  23. 'version' => '21.0.1.1',
  24. 'overwrite.cli.url' => 'http://localhost/nextcloud',
  25. 'dbname' => 'databasename',
  26. 'dbhost' => 'localhost:3308',
  27. 'dbport' => '',
  28. 'dbtableprefix' => 'oc_',
  29. 'mysql.utf8mb4' => true,
  30. 'dbuser' => 'aname',
  31. 'dbpassword' => 'supersecretpassword',
  32. 'installed' => true,
  33. 'default_phone_region' => 'ISO 3166-2:GB',
  34. );
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement