Advertisement
Guest User

NC config

a guest
Oct 10th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. root@node-srv:~# cat /var/www/nextcloud/config/config.php
  2. <?php
  3. $CONFIG = array (
  4. 'instanceid' => '***REMOVED SENSITIVE VALUE***',
  5. 'passwordsalt' => '***REMOVED SENSITIVE VALUE***',
  6. 'secret' => '***REMOVED SENSITIVE VALUE***',
  7. 'trusted_domains' =>
  8. array (
  9. '***REMOVED SENSITIVE VALUE***'
  10. ),
  11. 'datadirectory' => '/var/www/nextcloud/data',
  12. 'overwrite.cli.url' => '***REMOVED SENSITIVE VALUE***',
  13. 'dbtype' => 'mysql',
  14. 'version' => '14.0.2.0',
  15. 'dbname' => 'nextcloud',
  16. 'dbhost' => 'localhost',
  17. 'dbport' => '',
  18. 'dbtableprefix' => 'oc_',
  19. 'dbuser' => '***REMOVED SENSITIVE VALUE***',
  20. 'dbpassword' => '***REMOVED SENSITIVE VALUE***',
  21. 'installed' => true,
  22. 'memcache.local' => '\\OC\\Memcache\\Redis',
  23. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  24. 'filelocking.enable' => 'true',
  25. 'redis' =>
  26. array (
  27. 'host' => 'localhost',
  28. 'port' => 6379,
  29. 'timeout' => 0.0,
  30. ),
  31. 'maintenance' => false,
  32. 'theme' => '',
  33. 'loglevel' => 1,
  34. 'updater.release.channel' => 'beta',
  35. 'updater.secret' => '***REMOVED SENSITIVE VALUE***',
  36. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement