Hi j,
I found something interesting, when I set:
proxy_request_buffering off;
proxy_buffering off;
Ngnix always proxied about 10M data.
But when I set :
proxy_request_buffering on;
proxy_buffering off;
Nginx always proxied about 18M data.I guess the issue is about request buffering.
Do you have any suggestions? Thanks!
With proxy_request_buffering on, I also tried to increase client_body_buffer_size to 50M but still only 18M get proxied.
I found something interesting, when I set:
proxy_request_buffering off;
proxy_buffering off;
Ngnix always proxied about 10M data.
But when I set :
proxy_request_buffering on;
proxy_buffering off;
Nginx always proxied about 18M data.I guess the issue is about request buffering.
Do you have any suggestions? Thanks!
With proxy_request_buffering on, I also tried to increase client_body_buffer_size to 50M but still only 18M get proxied.