From 68cda6ca2a7e4388faa55bc19d3c23bb441bb9f9 Mon Sep 17 00:00:00 2001 From: Paul <22284856+ProgramComputer@users.noreply.github.com> Date: Tue, 15 Jun 2021 14:42:10 -0500 Subject: [PATCH] Change to default value for proxy_max_temp_file_size Received proxy_max_temp_file_size invalid. Checked http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_max_temp_file_size and 1024 is the default. --- nextcloud.subdomain.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud.subdomain.conf.sample b/nextcloud.subdomain.conf.sample index c1c846a..2a332e7 100644 --- a/nextcloud.subdomain.conf.sample +++ b/nextcloud.subdomain.conf.sample @@ -31,6 +31,6 @@ server { set $upstream_proto https; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_max_temp_file_size 2048m; + proxy_max_temp_file_size 1024m; } }