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.
This commit is contained in:
Paul 2021-06-15 14:42:10 -05:00 committed by GitHub
commit 68cda6ca2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,6 @@ server {
set $upstream_proto https; set $upstream_proto https;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
proxy_max_temp_file_size 2048m; proxy_max_temp_file_size 1024m;
} }
} }