Advertisement
Guest User

Untitled

a guest
Jan 16th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 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. 'memcache.distributed' => '\\OC\\Memcache\\Redis',
  21. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  22. 'redis' =>
  23. array (
  24. 'host' => 'redis',
  25. 'password' => '',
  26. 'port' => 6379,
  27. ),
  28. 'passwordsalt' => 'CONFIDENTIAL',
  29. 'secret' => 'CONFIDENTIAL',
  30. 'trusted_domains' =>
  31. array (
  32. 0 => 'localhost',
  33. 1 => 'mydomain.com',
  34. 2 => 'nc.mydomain.com',
  35. 3 => '192.168.1.16',
  36. ),
  37. 'datadirectory' => '/var/www/html/data',
  38. 'dbtype' => 'mysql',
  39. 'version' => '25.0.2.3',
  40. 'overwrite.cli.url' => 'https://nc.mydomain.com',
  41. 'overwriteprotocol' => 'https',
  42. 'dbname' => 'nextcloud',
  43. 'dbhost' => 'db',
  44. 'dbport' => '',
  45. 'dbtableprefix' => 'oc_',
  46. 'mysql.utf8mb4' => true,
  47. 'dbuser' => 'nextcloud',
  48. 'dbpassword' => 'CONFIDENTIAL',
  49. 'installed' => true,
  50. 'instanceid' => 'CONFIDENTIAL',
  51. 'maintenance' => false,
  52. 'bulkupload.enabled' => false,
  53. 'mail_smtpmode' => 'smtp',
  54. 'mail_smtpsecure' => 'ssl',
  55. 'mail_sendmailmode' => 'smtp',
  56. 'mail_from_address' => 'CONFIDENTIAL',
  57. 'mail_domain' => 'gmail.com',
  58. 'mail_smtpauth' => 1,
  59. 'mail_smtphost' => 'smtp.gmail.com',
  60. 'mail_smtpauthtype' => 'LOGIN',
  61. 'mail_smtpport' => '465',
  62. 'mail_smtpname' => 'CONFIDENTIAL',
  63. 'mail_smtppassword' => 'CONFIDENTIAL',
  64. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement