Advertisement
Guest User

Untitled

a guest
Jul 4th, 2022
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'instanceid' => '************',
  4. 'passwordsalt' => '************************',
  5. 'secret' => '************************************',
  6. 'trusted_domains' =>
  7. array (
  8. 0 => 'nextcloud.company.xyz',
  9. ),
  10. 'datadirectory' => '/var/www/nextcloud.company.xyz/data',
  11. 'dbtype' => 'mysql',
  12. 'version' => '24.0.2.1',
  13. 'overwrite.cli.url' => 'https://nextcloud.company.xyz',
  14. 'dbname' => 'PROD_NEXTCLOUD',
  15. 'dbhost' => 'localhost',
  16. 'dbport' => '',
  17. 'dbtableprefix' => 'oc_',
  18. 'mysql.utf8mb4' => true,
  19. 'dbuser' => 'adminnextcloudxxxxx',
  20. 'dbpassword' => '**********',
  21. 'installed' => true,
  22. 'default_phone_region' => 'FR',
  23. 'memcache.local' => '\\OC\\Memcache\\APCu',
  24. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  25. 'redis' =>
  26. array (
  27. 'host' => 'localhost',
  28. 'port' => 6379,
  29. ),
  30. 'mail_smtpmode' => 'smtp',
  31. 'mail_sendmailmode' => 'smtp',
  32. 'mail_from_address' => 'nextcloud',
  33. 'mail_domain' => 'company.xyz',
  34. 'mail_smtpauthtype' => 'LOGIN',
  35. 'mail_smtpauth' => 1,
  36. 'mail_smtphost' => 'smtp.company.xyz',
  37. 'mail_smtpport' => '587',
  38. 'mail_smtpname' => 'relay@company.xyz',
  39. 'mail_smtppassword' => '*******',
  40. 'skeletondirectory' => '',
  41. 'maintenance' => false,
  42. 'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
  43. 'theme' => '',
  44. 'loglevel' => 2,
  45. );
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement