Advertisement
Guest User

config.php

a guest
Oct 19th, 2017
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => '************',
  4. 'passwordsalt' => '*************************',
  5. 'secret' => '*****************************',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => '**********.com',
  9. ),
  10. 'datadirectory' => '/var/www/html/nextcloud/data',
  11. 'overwrite.cli.url' => 'https://**********.com/nextcloud',
  12. 'dbtype' => 'mysql',
  13. 'version' => '12.0.3.3',
  14. 'dbname' => 'nextcloud',
  15. 'dbhost' => 'localhost',
  16. 'dbport' => '',
  17. 'dbtableprefix' => 'oc_',
  18. 'htaccess.RewriteBase' => '/nextcloud',
  19. 'mysql.utf8mb4' => true,
  20. 'dbuser' => 'nextclouduser',
  21. 'dbpassword' => '**********',
  22. 'installed' => true,
  23. 'memcache.local' => '\OC\Memcache\APCu',
  24. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  25. 'filelocking.enabled' => 'true',
  26. 'redis' =>
  27. array (
  28. 'host' => '/var/run/redis/redis.sock',
  29. 'port' => 0,
  30. 'timeout' => 0.0,
  31. ),
  32. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement