fix postgres wrong mount
This commit is contained in:
parent
d700a9fc13
commit
15174fabcd
5 changed files with 29 additions and 20 deletions
|
|
@ -1,14 +1,21 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'maintenance_window_start' => 1,
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => [
|
||||
'host' => 'redis',
|
||||
'port' => 6379,
|
||||
],
|
||||
'default_phone_region' => 'DE',
|
||||
'hsts' => true,
|
||||
'hstsMaxAge' => 15552000,
|
||||
'hstsIncludeSubdomains' => true,
|
||||
);
|
||||
'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',
|
||||
),
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue