Advertisement
Guest User

config.php

a guest
Nov 26th, 2016
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => '###',
  4. 'passwordsalt' => '###',
  5. 'secret' => '###',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => '###',
  9. ),
  10. 'datadirectory' => '###',
  11. 'overwrite.cli.url' => '###',
  12. 'dbtype' => 'mysql',
  13. 'version' => '11.0.0.4',
  14. 'dbname' => 'nextcloud',
  15. 'dbhost' => 'localhost',
  16. 'dbport' => '',
  17. 'dbtableprefix' => 'oc_',
  18. 'dbuser' => '###',
  19. 'dbpassword' => '###',
  20. 'logtimezone' => 'UTC',
  21. 'installed' => true,
  22. 'maintenance' => false,
  23. 'appcodechecker' => false,
  24. 'blacklisted_files' =>
  25. array (
  26. 0 => '._*',
  27. 1 => '.DS_Store',
  28. 2 => '.DS_STORE',
  29. 3 => '.ds_store',
  30. 4 => '.dropbox',
  31. 5 => 'Thumbs.db',
  32. 6 => '.Trashes',
  33. ),
  34. 'memcache.local' => '\\OC\\Memcache\\Redis',
  35. 'filelocking.enabled' => 'true',
  36. 'memcache.distributed' => '\\OC\\Memcache\\Redis',
  37. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  38. 'redis' =>
  39. array (
  40. 'host' => 'localhost',
  41. 'port' => 6379,
  42. 'timeout' => 0,
  43. 'dbindex' => 0,
  44. ),
  45. 'mail_smtpmode' => 'php',
  46. 'mail_smtpauthtype' => 'LOGIN',
  47. 'mail_smtpauth' => 1,
  48. 'mail_from_address' => '###',
  49. 'mail_domain' => '###',
  50. 'updater.release.channel' => 'stable',
  51. 'updater.secret' => '###',
  52. 'theme' => '',
  53. 'loglevel' => 2,
  54. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement