Advertisement
jms1989

nexcloud config

Mar 17th, 2023
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'htaccess.RewriteBase' => '/',
  4. 'memcache.local' => '\\OC\\Memcache\\APCu',
  5. 'apps_paths' =>
  6. array (
  7. 0 =>
  8. array (
  9. 'path' => '/var/www/html/apps',
  10. 'url' => '/apps',
  11. 'writable' => false,
  12. ),
  13. 1 =>
  14. array (
  15. 'path' => '/var/www/html/custom_apps',
  16. 'url' => '/custom_apps',
  17. 'writable' => true,
  18. ),
  19. ),
  20. 'passwordsalt' => 'salt+',
  21. 'secret' => 'secret',
  22. 'trusted_domains' =>
  23. array (
  24. 0 => 'localhost',
  25. 1 => 'nasbox',
  26. ),
  27. 'datadirectory' => '/var/www/html/data',
  28. 'dbtype' => 'pgsql',
  29. 'version' => '25.0.4.1',
  30. 'overwrite.cli.url' => 'http://localhost',
  31. 'dbname' => 'nextcloud',
  32. 'dbhost' => 'nextcloud-postgres:5432',
  33. 'dbport' => '',
  34. 'dbtableprefix' => 'oc_',
  35. 'dbuser' => 'oc_michael',
  36. 'dbpassword' => 'PkIKVxenzLdebYAPZHpJWfYXHR3FjA',
  37. 'installed' => true,
  38. 'instanceid' => 'ocw6sydy1xfg',
  39. 'overwritehost' => 'skynet:9001',
  40. 'overwriteprotocol' => 'https',
  41. 'trusted_proxies' =>
  42. array (
  43. 0 => '127.0.0.1',
  44. ),
  45. 'loglevel' => 2,
  46. 'maintenance' => false,
  47. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement