Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stackspin/nextcloud
1 result
Show changes
Commits on Source (2)
# 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 }}
......