Skip to content

Commit baa3312

Browse files
pull[bot]dependabot[bot]antoinetran
authored
[pull] main from nextcloud:main (#69)
* chore(deps): bump actions/checkout from 4 to 5 nextcloud#759 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fest(nginx): large file upload tuning as configuration nextcloud#753 fix nextcloud#714 Signed-off-by: antoinetran <antoinetran@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: antoinetran <antoinetran@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: antoinetran <antoinetran@users.noreply.github.com>
1 parent 4c3e928 commit baa3312

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

.github/workflows/lint-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: needs.changes.outputs.src != 'false'
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333

@@ -97,7 +97,7 @@ jobs:
9797

9898
steps:
9999
- name: Checkout
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
fetch-depth: 0
103103

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
packages: write
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Fetch history
2525
run: git fetch --prune --unshallow

charts/nextcloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: nextcloud
3-
version: 7.0.0
3+
version: 7.0.1
44
# renovate: image=docker.io/library/nextcloud
55
appVersion: 31.0.7
66
description: A file sharing server that puts the control and security of your own data back into your hands.

charts/nextcloud/files/nginx.config.tpl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@ server {
4040
{{- end }}
4141
{{- end }}
4242

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

4845
# Enable gzip but do not remove ETag headers
4946
gzip on;

charts/nextcloud/values.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
## Official nextcloud image version
21
## ref: https://hub.docker.com/r/library/nextcloud/tags/
32
##
43
image:
@@ -352,6 +351,14 @@ nginx:
352351
"X-Robots-Tag": "noindex, nofollow"
353352
"X-XSS-Protection": "1; mode=block"
354353

354+
# Added in server block of default config.
355+
serverBlockCustom: |
356+
# set max upload size
357+
client_max_body_size 10G;
358+
client_body_timeout 300s;
359+
fastcgi_buffers 64 4K;
360+
fastcgi_read_timeout 3600s;
361+
355362
custom:
356363
# custom: |-
357364
# worker_processes 1;..

0 commit comments

Comments
 (0)