Skip to content
Snippets Groups Projects
Commit 20624035 authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch 'main' into renovate/rabbitmq-11.x

parents ccdb3c2c 23ae6adb
No related branches found
No related tags found
1 merge request!449Update Helm release rabbitmq to v11.2.1
Pipeline #34838 passed with stages
in 8 minutes and 15 seconds
# Changelog
## Unreleased
* Set `trusted_domains` setting explicitly in our config.
## [0.15.5] - 2022-11-09
* Update nextcloud helm chart to 3.3.3.
......
......@@ -172,6 +172,10 @@ data:
# to be trusted. 10.42.0.0/16 contains all ip addresses that are
# assigned to kubernetes pods, which includes the ip address of
# the ingress controller that functions as a reverse proxy.
# system.trusted_domains is actually also set by the nextcloud docker
# entrypoint script from the `NEXTCLOUD_TRUSTED_DOMAINS` env var which we
# also set, but that fails sometimes for unknown reasons, so we also set it
# here.
# system.overwriteprotocol overwrites the protocol of links that are
# generated by nextcloud to HTTPS.
# apps.core.backgroundjobs_mode set to cron disables the unreliable ajax
......@@ -182,6 +186,7 @@ data:
{
"system":{
"trusted_proxies": ["10.42.0.0/16"],
"trusted_domains": ["localhost", {{ .Values.nextcloud.nextcloud.host | quote }}],
"overwriteprotocol": "https",
"appstoreenabled": false,
"debug": {{ .Values.nextcloud.debug | quote }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment