12 lines
477 B
PHP
12 lines
477 B
PHP
<?php $CONFIG = [
|
|
'trusted_domains' => [ 'cloud.example.com', '192.168.0.100:8080', 'localhost:8080' ],
|
|
'versions_retention_obligation' => 'auto, 2',
|
|
'trashbin_retention_obligation' => 'auto, 2',
|
|
'memcache.local' => '\OC\Memcache\Redis',
|
|
'memcache.distributed' => '\OC\Memcache\Redis',
|
|
'memcache.locking' => '\OC\Memcache\Redis',
|
|
'redis' => [ 'host' => '/run/redis/redis-server.sock', 'port' => 0 ],
|
|
'filesystem_check_changes' => 1,
|
|
'sqlite.journal_mode' => 'WAL',
|
|
];
|