self-hosting/roles/nextcloud-docker/templates/nextcloud/config/base.config.php

21 lines
530 B
PHP
Raw Normal View History

2018-07-27 19:14:59 +02:00
<?php
$CONFIG = array (
'instanceid' => 'ocbsz7gnyjst',
'passwordsalt' => '{{nextcloud_passwordsalt}}',
'secret' => '{{nextcloud_secret}}',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'web',
2 => 'cloud.banditlair.com',
),
'datadirectory' => '/var/www/html/data',
'overwrite.cli.url' => 'https://cloud.banditlair.com',
'htaccess.RewriteBase' => '/',
'maintenance' => false,
'updater.release.channel' => 'stable',
'loglevel' => '1',
'filelocking.enabled' => true,
'theme' => '',
);