Skip to content
Snippets Groups Projects
Commit 92991ae2 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

Merge branch '1062-fix-some-warnings-in-settings' into 'main'

Resolve "Fix some warnings in settings"

Closes #1062

See merge request !229
parents c89fb3a9 0691e49b
No related branches found
No related tags found
1 merge request!229Resolve "Fix some warnings in settings"
Pipeline #24049 passed with stages
in 6 minutes and 58 seconds
## [0.10.9] - 2022-08-03
* Fix trusted_proxies to allow nextcloud to read correct remote IP addresses.
## [0.10.4] - 2022-07-26 ## [0.10.4] - 2022-07-26
* Configure ONLYOFFICE integration app to always open documents in same tab. * Configure ONLYOFFICE integration app to always open documents in same tab.
......
...@@ -3,7 +3,7 @@ apiVersion: v2 ...@@ -3,7 +3,7 @@ apiVersion: v2
description: | description: |
A helm chart for installing NextCloud and setting up ONLYOFFICE integration A helm chart for installing NextCloud and setting up ONLYOFFICE integration
name: nextcloud-onlyoffice name: nextcloud-onlyoffice
version: 0.10.8 version: 0.10.9
appVersion: NC-23.0.3-OO-7.0.1.37 appVersion: NC-23.0.3-OO-7.0.1.37
icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
dependencies: dependencies:
......
...@@ -87,9 +87,9 @@ data: ...@@ -87,9 +87,9 @@ data:
# All values in config.json are applied by the nextcloud occ command # All values in config.json are applied by the nextcloud occ command
# config:import. # config:import.
# system.trusted_proxies contains a list of proxies that are considered # system.trusted_proxies contains a list of proxies that are considered
# to be trusted. 10.43.0.0/16 contains all ip addresses that are # to be trusted. 10.42.0.0/16 contains all ip addresses that are
# assigned to kubernetes services which includes the ip address of # assigned to kubernetes pods, which includes the ip address of
# the ingress service that functions as a proxy. # the ingress controller that functions as a reverse proxy.
# system.overwriteprotocol overwrites the protocol of links that are # system.overwriteprotocol overwrites the protocol of links that are
# generated by nextcloud to HTTPS. # generated by nextcloud to HTTPS.
# apps.core.backgroundjobs_mode set to cron disables the unreliable ajax # apps.core.backgroundjobs_mode set to cron disables the unreliable ajax
...@@ -99,7 +99,7 @@ data: ...@@ -99,7 +99,7 @@ data:
config.json: | config.json: |
{ {
"system":{ "system":{
"trusted_proxies": "10.43.0.0/16", "trusted_proxies": ["10.42.0.0/16"],
"overwriteprotocol": "https", "overwriteprotocol": "https",
"appstoreenabled": false, "appstoreenabled": false,
"debug": {{ .Values.nextcloud.debug | quote }} "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