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;