media-server-docker-compose/nextcloud/config_bak/config.php

70 lines
2.0 KiB
PHP
Raw Normal View History

2024-06-23 12:21:53 -04:00
<?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',
'password' => '',
'port' => 6379,
),
'upgrade.disable-web' => true,
'instanceid' => 'ocj30zib09xz',
'passwordsalt' => 'stITL4J+mfSFbwH1Dau7jBxDTMSgi8',
'secret' => '4JhczCjrPiJy0PlFgbiUQxBR8kSJcaXBZE3KOuBkpdfe4c6/',
'trusted_domains' =>
array (
0 => 'nextcloud.brodin.rocks',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'mysql',
'version' => '29.0.0.19',
'overwrite.cli.url' => 'https://nextcloud.brodin.rocks',
'overwriteprotocol' => 'https',
'ratelimit.protection.enabled' => false,
'auth.bruteforce.protection.enabled' => false,
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'whiskey-wango-woxtrot',
'installed' => true,
'memories.db.triggers.fcu' => true,
'memories.exiftool' => '/var/www/html/custom_apps/memories/bin-ext/exiftool-amd64-glibc',
'memories.vod.path' => '/var/www/html/custom_apps/memories/bin-ext/go-vod-amd64',
'mail_from_address' => 'admin',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => 'brodin.rocks',
'mail_smtphost' => 'smtp.sendgrid.net',
'mail_smtpport' => '587',
'mail_smtpauth' => 1,
'mail_smtpname' => 'apikey',
'mail_smtppassword' => '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',
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\Image',
1 => 'OC\\Preview\\Movie',
),
'memories.vod.disable' => false,
);