open-productive-stack/nextcloud/custom/custom-config.php
2025-05-10 13:18:04 +02:00

21 lines
No EOL
524 B
PHP

<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'trusted_proxies' =>
array (
0 => 'traefik',
1 => '172.16.0.0/12',
2 => '192.168.0.0/16',
3 => '10.0.0.0/8',
),
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'nasarek.dev',
2 => 'drive.nasarek.dev',
3 => 'nextcloud-reverse-proxy',
4 => 'onlyoffice-documentserver',
),
);