Advertisement
Mr-Spino

config.php

May 14th, 2023
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3. 'memcache.local' => '\\OC\\Memcache\\APCu',
  4. 'datadirectory' => '/data',
  5. 'instanceid' => '***',
  6. 'passwordsalt' => '***',
  7. 'secret' => '***',
  8. 'trusted_domains' =>
  9. array (
  10. 0 => '192.168.100.250',
  11. 1 => '***'
  12. ),
  13. 'dbtype' => 'mysql',
  14. 'version' => '26.0.1.1',
  15. 'overwrite.cli.url' => 'https://192.168.100.250',
  16. 'dbname' => '***',
  17. 'dbhost' => '***',
  18. 'dbport' => '',
  19. 'dbtableprefix' => 'oc_',
  20. 'mysql.utf8mb4' => true,
  21. 'dbuser' => '***',
  22. 'dbpassword' => '***',
  23. 'installed' => true,
  24. 'log_type' => 'file',
  25. 'logfile' => 'LOGI.log',
  26. 'loglevel' => 1,
  27. "logdateformat" => "Y, F d H:i:s",
  28. 'max_chunk_size' => 0
  29. );
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement