Files
netoik-cloud/files/nextcloud/config.php.tpl
2026-06-25 13:01:17 +02:00

34 lines
891 B
Smarty

<?php
$CONFIG = array (
'instanceid' => '$INSTANCE_ID',
'passwordsalt' => '$PASSWORD_SALT',
'secret' => '$SECRET',
'trusted_domains' => array (
0 => 'cloud.netoik.io',
),
'datadirectory' => '/var/lib/nextcloud/data',
'dbtype' => 'pgsql',
'version' => '31.0.7.1',
'overwrite.cli.url' => 'https://cloud.netoik.io',
'dbname' => 'nextcloud',
'dbhost' => '/run/postgresql',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '',
'installed' => true,
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' => array (
'host' => '/run/valkey/valkey.sock',
'port' => 0,
),
'default_phone_region' => 'FR',
'maintenance' => false,
'log_type' => 'systemd',
'loglevel' => 2,
'config_is_read_only' => true,
);
?>