Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2022
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 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. 'trusted_proxies' =>
  21. array (
  22. 0 => '10.0.81.4',
  23. ),
  24. 'instanceid' => 'REDACTED',
  25. 'passwordsalt' => 'REDACTED',
  26. 'secret' => 'REDACTED',
  27. 'trusted_domains' =>
  28. array (
  29. 0 => '10.0.81.50',
  30. 1 => 'nextcloud',
  31. 2 => 'REDACTED',
  32. ),
  33. 'datadirectory' => '/var/www/html/data',
  34. 'dbtype' => 'pgsql',
  35. 'version' => '24.0.5.1',
  36. 'overwriteprotocol' => 'https',
  37. 'overwrite.cli.url' => 'https://REDACTED',
  38. 'dbname' => 'nextcloud',
  39. 'dbhost' => 'nextcloud-postgres',
  40. 'dbport' => '',
  41. 'dbtableprefix' => 'oc_',
  42. 'dbuser' => 'oc_laxis',
  43. 'dbpassword' => 'REDACTED',
  44. 'installed' => true,
  45. 'mail_smtpmode' => 'smtp',
  46. 'mail_smtpauth' => 1,
  47. 'mail_sendmailmode' => 'smtp',
  48. 'mail_smtpauthtype' => 'LOGIN',
  49. 'mail_smtpname' => 'REDACTED',
  50. 'mail_smtppassword' => 'REDACTED',
  51. 'mail_smtphost' => 'REDACTED',
  52. 'mail_smtpport' => '587',
  53. 'mail_from_address' => 'nextcloud',
  54. 'mail_domain' => 'REDACTED',
  55. 'mail_smtpsecure' => 'tls',
  56. 'memcache.distributed' => '\\OC\\Memcache\\Redis',
  57. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  58. 'redis' =>
  59. array (
  60. 'host' => 'nextcloud-redis',
  61. 'password' => '',
  62. 'port' => 6379,
  63. ),
  64. 'loglevel' => 2,
  65. 'maintenance' => false,
  66. 'enabledPreviewProviders' => [
  67. 'OC\Preview\BMP',
  68. 'OC\Preview\GIF',
  69. 'OC\Preview\Imaginary',
  70. 'OC\Preview\JPEG',
  71. 'OC\Preview\Krita',
  72. 'OC\Preview\MarkDown',
  73. 'OC\Preview\MP3',
  74. 'OC\Preview\OpenDocument',
  75. 'OC\Preview\PNG',
  76. 'OC\Preview\TXT',
  77. 'OC\Preview\XBitmap',
  78. ],
  79. 'preview_imaginary_url' => 'http://nextcloud-imaginary:9000',
  80. );
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement