19 lines
543 B
YAML
19 lines
543 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nextcloud-custom-config
|
|
namespace: nextcloud
|
|
data:
|
|
custom.config.php: |
|
|
<?php
|
|
$CONFIG = array (
|
|
'trusted_proxies' => ['10.42.0.0/16'],
|
|
'overwritehost' => 'nextcloud.manabo.org',
|
|
'overwriteprotocol' => 'https',
|
|
'overwrite.cli.url' => 'https://nextcloud.manabo.org',
|
|
'forwarded_for_headers' => ['HTTP_X_FORWARDED_FOR'],
|
|
'default_phone_region' => 'ES',
|
|
'maintenance_window_start' => 3,
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
);
|