Disable Nginx request body buffering
We need to disable request body buffering to upload streaming data without delay. It consumes very low bandwidth, but requires delivering it to the origin server without delay.
On Nginx side it achieves by the following options in config:
proxy_request_buffering off;
proxy_http_version 1.1;
client_max_body_size 0;
Post Information
Subscribe to post
Get notified by email when there are changes.
Upvoters
+15
Post Details