Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nextcloud): add support for uploading larger files #477

Merged
merged 1 commit into from
Dec 20, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class NextcloudIngress(configService: ConfigService) : DependentIngress<Nextclou
labels(primary.resourceLabels)
annotations(
getDefaultAnnotations(primary, context) +
("nginx.ingress.kubernetes.io/proxy-body-size" to "10g")
("nginx.ingress.kubernetes.io/proxy-body-size" to "10g") +
("nginx.ingress.kubernetes.io/proxy-buffering" to "off")
)
}
spec {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ http {
#add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always;

# set max upload size
client_max_body_size 512M;
client_max_body_size 10G;
fastcgi_buffers 64 4K;

# Enable gzip but do not remove ETag headers
Expand Down
Loading