feat: first commit
This commit is contained in:
34
files/nextcloud/config.php
Normal file
34
files/nextcloud/config.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?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,
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user