Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 7.0.0
version: 7.0.1
# renovate: image=docker.io/library/nextcloud
appVersion: 31.0.7
description: A file sharing server that puts the control and security of your own data back into your hands.
Expand Down
5 changes: 1 addition & 4 deletions charts/nextcloud/files/nginx.config.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ server {
{{- end }}
{{- end }}

# set max upload size and increase upload timeout:
client_max_body_size 512M;
client_body_timeout 300s;
fastcgi_buffers 64 4K;
{{- .Values.nginx.config.serverBlockCustom | nindent 4 }}

# Enable gzip but do not remove ETag headers
gzip on;
Expand Down
9 changes: 8 additions & 1 deletion charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
## Official nextcloud image version
## ref: https://hub.docker.com/r/library/nextcloud/tags/
##
image:
Expand Down Expand Up @@ -352,6 +351,14 @@ nginx:
"X-Robots-Tag": "noindex, nofollow"
"X-XSS-Protection": "1; mode=block"

# Added in server block of default config.
serverBlockCustom: |
# set max upload size
client_max_body_size 10G;
client_body_timeout 300s;
fastcgi_buffers 64 4K;
fastcgi_read_timeout 3600s;

custom:
# custom: |-
# worker_processes 1;..
Expand Down