Advertisement
Guest User

Nextcloud config.php

a guest
Jun 5th, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.43 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3.   'instanceid' => '*',
  4.   'passwordsalt' => '*',
  5.   'secret' => '*',
  6.   'trusted_domains' =>
  7.   array (
  8.     0 => '192.168.0.150',
  9.   ),
  10.   'datadirectory' => '/media/clouddrive/nextcloud_data',
  11.   'dbtype' => 'mysql',
  12.   'version' => '16.0.1.1',
  13.   'overwrite.cli.url' => 'http://192.168.0.150/nextcloud',
  14.   'htaccess.RewriteBase' => '/nextcloud',
  15.   'dbname' => 'nextcloud',
  16.   'dbhost' => 'localhost:3306',
  17.   'dbport' => '',
  18.   'dbtableprefix' => 'oc_',
  19.   'mysql.utf8mb4' => true,
  20.   'dbuser' => 'usernextcloud',
  21.   'dbpassword' => '***',
  22.   'installed' => true,
  23.   'mail_from_address' => '***',
  24.   'mail_smtpmode' => 'smtp',
  25.   'mail_sendmailmode' => 'smtp',
  26.   'mail_domain' => '***.com',
  27.   'mail_smtpauthtype' => 'LOGIN',
  28.   'mail_smtpsecure' => 'ssl',
  29.   'mail_smtphost' => 'smtp.***.com',
  30.   'mail_smtpport' => '465',
  31.   'mail_smtpauth' => 1,
  32.   'mail_smtpname' => '*****',
  33.   'mail_smtppassword' => '****',
  34.   'memcache.local' => '\\OC\\Memcache\\APCu',
  35.   'memcache.distributed' => '\\OC\\Memcache\\Redis',
  36.   'redis' =>
  37.   array (
  38.     'host' => '/var/run/redis/redis.sock',
  39.     'port' => 0,
  40.     'dbindex' => 0,
  41.     'password' => 'secret',
  42.     'timeout' => 1.5,
  43.   ),
  44.   'memcache.locking' => '\\OC\\Memcache\\Redis',
  45.   'maintenance' => false,
  46.   'updater.secret' => '$2y$10$eW/IzftXjzTRht2cXnQGOe97h18u.NGeLb/KyIlIEu1WTSGP8E7Za',
  47.   'theme' => '',
  48.   'loglevel' => 2,
  49.   'logfile' => '/var/log/nextcloud.log',
  50. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement