Files
netoik-cloud/files/nextcloud/config.php
samuel 4b8c6e3b83
Some checks failed
Continuous Integration / lint_n_build (push) Failing after 21s
Continuous Delivery / build_n_upload (push) Successful in 26s
feat: first commit
2026-06-10 18:18:06 +02:00

35 lines
893 B
PHP

<?php
$CONFIG = array (
'instanceid' => '',
'passwordsalt' => '',
'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,
'maintenance_window_start' => 1,
'log_type' => 'systemd',
'loglevel' => 2,
'config_is_read_only' => true,
);
?>