40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
$CONFIG = array (
|
|
'trusted_domains' =>
|
|
array (
|
|
0 => 'localhost',
|
|
1 => 'cloud.actcur.com'
|
|
),
|
|
'overwrite.cli.url' => 'https://cloud.actcur.com/',
|
|
'htaccess.RewriteBase' => '/',
|
|
'datadirectory' => '/var/lib/nextcloud/data',
|
|
'logfile' => '/var/log/nextcloud/nextcloud.log',
|
|
'apps_paths' =>
|
|
array (
|
|
0 =>
|
|
array (
|
|
'path' => '/usr/share/webapps/nextcloud/apps',
|
|
'url' => '/apps',
|
|
'writable' => false,
|
|
),
|
|
1 =>
|
|
array (
|
|
'path' => '/var/lib/nextcloud/apps',
|
|
'url' => '/wapps',
|
|
'writable' => true,
|
|
),
|
|
),
|
|
'passwordsalt' => '{%- include 'secure/passwords/nextcloud_password_salt.txt' -%}',
|
|
'secret' => '{%- include 'secure/passwords/nextcloud_secret.txt' -%}',
|
|
'dbtype' => 'mysql',
|
|
'version' => '24.0.4.1',
|
|
'dbname' => 'nextcloud',
|
|
'dbhost' => 'sql.actcur.com',
|
|
'dbport' => '',
|
|
'dbtableprefix' => 'oc_',
|
|
'mysql.utf8mb4' => true,
|
|
'dbuser' => 'nextcloud',
|
|
'dbpassword' => '{%- include 'secure/passwords/nextcloud_db_password.txt' -%}',
|
|
'installed' => true,
|
|
'instanceid' => 'oc0yyxhk9zan',
|
|
);
|