Skip to content

Instantly share code, notes, and snippets.

@FlyingPersian
Created August 31, 2020 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlyingPersian/f403c28e065c5d5cc3ce17a8027cc88e to your computer and use it in GitHub Desktop.
Save FlyingPersian/f403c28e065c5d5cc3ce17a8027cc88e to your computer and use it in GitHub Desktop.
<?php
$CONFIG = array (
'instanceid' => 'xxx',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => '192.168.178.101',
),
'datadirectory' => '/usr/local/www/owncloud/data',
'overwrite.cli.url' => 'http://192.168.178.101',
'dbtype' => 'mysql',
'version' => '10.4.1.3',
'dbname' => 'ownclouddb',
'dbhost' => 'localhost',
'dbtableprefix' => 'oc_',
'dbuser' => 'xxx',
'dbpassword' => 'xxx',
'logtimezone' => 'UTC',
'log_type' => 'owncloud',
'logfile' => '/usr/local/www/owncloud/data/owncloud.log',
'loglevel' => 0,
'installed' => true,
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'memcache.local' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'localhost',
'port' => 6379,
'timeout' => 0.0,
'password' => 'xxx',
),
'maintenance' => true,
'updater.secret' => 'xxx',
'onlyoffice' =>
array (
'verify_peer_off' => true,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment