Advertisement
Guest User

Untitled

a guest
Jan 27th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <?php
  2.  
  3. $CONFIG = array (
  4.  
  5. 'htaccess.RewriteBase' => '/',
  6.  
  7. 'memcache.local' => '\\OC\\Memcache\\APCu',
  8.  
  9. 'apps_paths' =>
  10.  
  11. array (
  12.  
  13. 0 =>
  14.  
  15. array (
  16.  
  17. 'path' => '/var/www/html/apps',
  18.  
  19. 'url' => '/apps',
  20.  
  21. 'writable' => false,
  22.  
  23. ),
  24.  
  25. 1 =>
  26.  
  27. array (
  28.  
  29. 'path' => '/var/www/html/custom_apps',
  30.  
  31. 'url' => '/custom_apps',
  32.  
  33. 'writable' => true,
  34.  
  35. ),
  36.  
  37. ),
  38.  
  39. 'instanceid' => '',
  40.  
  41. 'passwordsalt' => '',
  42.  
  43. 'secret' => '',
  44.  
  45. 'trusted_domains' =>
  46.  
  47. array (
  48.  
  49. 0 => '',
  50.  
  51. ),
  52.  
  53. 'datadirectory' => '/var/www/html/data',
  54.  
  55. 'dbtype' => 'mysql',
  56.  
  57. 'version' => '20.0.4.0',
  58.  
  59. 'overwrite.cli.url' => '',
  60.  
  61. 'dbname' => '',
  62.  
  63. 'dbhost' => 'db',
  64.  
  65. 'dbport' => '',
  66.  
  67. 'dbtableprefix' => 'oc_',
  68.  
  69. 'mysql.utf8mb4' => true,
  70.  
  71. 'dbuser' => '',
  72.  
  73. 'dbpassword' => '',
  74.  
  75. 'installed' => true,
  76.  
  77. 'overwriteprotocol' => 'https',
  78.  
  79. 'loglevel' => 2,
  80.  
  81. 'maintenance' => false,
  82.  
  83. 'mail_smtpmode' => 'smtp',
  84.  
  85. 'mail_sendmailmode' => 'smtp',
  86.  
  87. 'mailfromaddress' => '',
  88.  
  89. 'mail_domain' => '',
  90.  
  91. 'mail_smtphost' => ' ',
  92.  
  93. 'mail_smtpport' => '',
  94.  
  95. 'mail_smtpauth' => 1,
  96.  
  97. 'mail_smtpname' => '',
  98.  
  99. 'mail_smtppassword' => '',
  100.  
  101. 'mail_smtpauthtype' => 'LOGIN',
  102.  
  103. 'mail_smtpsecure' => 'ssl',
  104.  
  105. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement