Advertisement
krzyzak

nextcloud_config.php

Feb 28th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.87 KB | None | 0 0
  1. <?php
  2. $CONFIG = array (
  3.   'instanceid' => 'ocaorxj0rx44',
  4.   'passwordsalt' => '',
  5.   'secret' => '',
  6.   'trusted_domains' =>
  7.   array (
  8.     0 => 'some.domain.pl',
  9.   ),
  10.   'datadirectory' => '/home/some_domain/public_html/data',
  11.   'overwrite.cli.url' => 'http://some.domain.pl',
  12.   'dbtype' => 'mysql',
  13.   'version' => '11.0.2.7',
  14.   'dbname' => 'some_cloud',
  15.   'dbhost' => 'localhost',
  16.   'dbport' => '',
  17.   'dbtableprefix' => 'oc_',
  18.   'dbuser' => 'some_user',
  19.   'dbpassword' => 'secret.password',
  20.   'logtimezone' => 'UTC',
  21.   'installed' => true,
  22.   'mail_smtpmode' => 'php',
  23.   'filelocking.enabled' => false,
  24.   'maintenance' => false,
  25.   'loglevel' => 2,
  26. //  'memcache.local' => '\OC\Memcache\APCu',
  27. //  'memcache.locking' => '\OC\Memcache\Redis',
  28. //  'redis' => array(
  29. //      'host' => 'localhost',
  30. //      'port' => 6379,
  31. //      'timeout' => 0.0,
  32. //       ),
  33. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement