mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
20 lines
530 B
PHP
20 lines
530 B
PHP
<?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' => '',
|
|
);
|