Merge pull request #4151 from nextcloud/enh/4150/add-trusted-domain

helm chart - allow to add additional trusted domain
This commit is contained in:
Simon L 2024-02-01 13:15:49 +01:00 committed by GitHub
commit 0ad7aeb362
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 28 additions and 2 deletions

View file

@ -14,6 +14,7 @@
}
}
https://{$ADDITIONAL_TRUSTED_DOMAIN}:443,
{$PROTOCOL}://{$NC_DOMAIN}:{$APACHE_PORT} {
# Collabora

View file

@ -51,6 +51,12 @@ else
fi
echo "$CADDYFILE" > /tmp/Caddyfile
# Remove additional domain if not given
if [ -z "$ADDITIONAL_TRUSTED_DOMAIN" ]; then
CADDYFILE="$(sed '/ADDITIONAL_TRUSTED_DOMAIN/d' /tmp/Caddyfile)"
fi
echo "$CADDYFILE" > /tmp/Caddyfile
# Fix the Caddyfile format
caddy fmt --overwrite /tmp/Caddyfile