This commit is contained in:
Philip Haupt
2025-10-12 23:16:15 +02:00
parent df92775e77
commit 61abff3d93
2 changed files with 3 additions and 3 deletions

View File

@@ -98,7 +98,7 @@ data:
<?php
$trustedDomains = getenv('NEXTCLOUD_TRUSTED_DOMAINS');
if ($trustedDomains) {
$CONFIG['trusted_domains'] = array_filter(array_map('trim', explode(' ', $trustedProxies)));
$CONFIG['trusted_domains'] = array_filter(array_map('trim', explode(' ', $trusted_domains)));
}
redis.config.php: |-
<?php
@@ -284,7 +284,7 @@ spec:
metadata:
annotations:
hooks-hash: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
nextcloud-config-hash: a8cce1a4b7d224e7cbcd89284f510931e3b84fb6f93aeb8fc6113ca4b2b120a1
nextcloud-config-hash: bc74f2af48db9c386b1c4d836e9de7dd9f81c8b0457a319eaa6e4f09d5f4e4fc
php-config-hash: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
labels:
app.kubernetes.io/component: app

View File

@@ -220,7 +220,7 @@ nextcloud:
<?php
$trustedDomains = getenv('NEXTCLOUD_TRUSTED_DOMAINS');
if ($trustedDomains) {
$CONFIG['trusted_domains'] = array_filter(array_map('trim', explode(' ', $trustedProxies)));
$CONFIG['trusted_domains'] = array_filter(array_map('trim', explode(' ', $trusted_domains)));
}
# For example, to enable image and text file previews:
# previews.config.php: |-