From 7bc58ee616dc11ddfed427d11d05edc3789e16fc Mon Sep 17 00:00:00 2001 From: dimon Date: Mon, 17 Jul 2023 18:15:38 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BB(=D0=B0)=20?= =?UTF-8?q?'nextcloud-config.php'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nextcloud-config.php | 66 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 nextcloud-config.php diff --git a/nextcloud-config.php b/nextcloud-config.php new file mode 100644 index 0000000..b043155 --- /dev/null +++ b/nextcloud-config.php @@ -0,0 +1,66 @@ + '/', + 'memcache.local' => '\\OC\\Memcache\\APCu', + 'apps_paths' => + array ( + 0 => + array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), + ), + 'memcache.distributed' => '\\OC\\Memcache\\Redis', + 'memcache.locking' => '\\OC\\Memcache\\Redis', + 'redis' => + array ( + 'host' => 'REDIS_HOST', + 'password' => 'REDIS_PASSWORD', + 'port' => 6379, + ), + 'instanceid' => 'ocfqhafrx447', + 'passwordsalt' => 'NEXTCLOUD_PASSWORD_SALT', + 'secret' => 'NEXTCLOUD_PASSWORD_SECRET', + 'trusted_domains' => + array ( + 0 => 'iron.home.local', + 1 => 'dfosd.synology.me', + ), + 'datadirectory' => '/var/www/nextcloud/data', + 'dbtype' => 'pgsql', + 'version' => 'NEXTCLOUD_DATABASE_VERSION', + 'overwrite.cli.url' => 'https://office.dfosd.synology.me', + 'overwritehost' => 'office.dfosd.synology.me', + 'dbname' => 'DB_NAME', + 'dbhost' => 'DB_HOST:DB_PORT', + 'dbport' => '', + 'dbtableprefix' => 'oc_', + 'dbuser' => 'DB_USER', + 'dbpassword' => 'DB_PASSWORD', + 'installed' => true, + 'app_install_overwrite' => + array ( + 0 => 'joplin', + 1 => 'secsignid', + 2 => 'keeweb', + 3 => 'carnet', + 4 => 'ocdownloader', + 5 => 'richdocumentscode', + ), + 'maintenance' => false, + 'loglevel' => 0, + 'debug' => false, + 'has_rebuilt_cache' => true, + 'default_locale' => 'ru_RU', + 'default_language' => 'ru', + 'default_phone_region' => 'RU', + 'trashbin_retention_obligation' => 'auto, 30', + 'updater.secret' => 'NEXTCLOUD_UPDATER_SECRET', +);