Advertisement
jspudich

config.php

Jan 11th, 2023 (edited)
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.44 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.   'instanceid' => '',
  21.   'passwordsalt' => '',
  22.   'secret' => '',
  23.   'trusted_domains' =>
  24.   array (
  25.     0 => '',
  26.     1 => ''
  27.   ),
  28.   'trusted_proxies' => [''],
  29.   'overwritehost' => '',
  30.   'overwriteprotocol' => '',
  31. #  'overwritecondaddr' => '^$',
  32.  'datadirectory' => '/var/www/html/data',
  33.   'dbtype' => 'mysql',
  34.   'version' => '25.0.2.3',
  35.   'overwrite.cli.url' => '',
  36.   'dbname' => 'nextcloud',
  37.   'dbhost' => 'db',
  38.   'dbport' => '',
  39.   'dbtableprefix' => 'oc_',
  40.   'mysql.utf8mb4' => true,
  41.   'dbuser' => '',
  42.   'dbpassword' => '',
  43.   'installed' => true,
  44.   'mail_smtpmode' => 'smtp',
  45.   'mail_smtphost' => 'email.active24.com',
  46.   'mail_sendmailmode' => 'smtp',
  47.   'mail_smtpport' => '587',
  48.   'mail_smtpsecure' => 'tls',
  49.   'mail_from_address' => '',
  50.   'mail_domain' => '',
  51.   'mail_smtpauth' => 1,
  52.   'mail_smtpname' => '',
  53.   'mail_smtppassword' => '',
  54.   'default_phone_region' => 'CZ',
  55.   #
  56.  # https://github.com/nextcloud/mail/issues/3080#issuecomment-626452065
  57.  #'imap_max_line_length' => '1M',
  58.  #'debug' => true,
  59.  #'loglevel' => 0,
  60. );
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement