Advertisement
Guest User

Untitled

a guest
Jun 7th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => 'XXXXX',
  4. 'passwordsalt' => 'XXXXXXXXX',
  5. 'secret' => 'XXXXXXXXX',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'my.cloud.com',
  9. ),
  10. 'datadirectory' => '/var/www/nextcloud/data',
  11. 'overwrite.cli.url' => 'my.cloud.com',
  12. 'dbtype' => 'mysql',
  13. 'version' => '13.0.1.1',
  14. 'dbname' => 'nextcloud',
  15. 'dbhost' => 'localhost',
  16. 'dbport' => '',
  17. 'dbtableprefix' => 'oc_',
  18. 'dbuser' => 'nextcloud',
  19. 'dbpassword' => 'mypasswd',
  20. 'installed' => true,
  21. 'memcache.local' => '\\OC\\Memcache\\APCu',
  22. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  23. 'redis' =>
  24. array (
  25. 'host' => 'localhost',
  26. 'port' => 6379,
  27. ),
  28. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement