Создал(а) 'nextcloud-config.php'
This commit is contained in:
parent
a0a80da187
commit
7bc58ee616
66
nextcloud-config.php
Normal file
66
nextcloud-config.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'htaccess.RewriteBase' => '/',
|
||||
'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',
|
||||
);
|
||||
Loading…
x
Reference in New Issue
Block a user