Disable response buffering

,

is it possible to have request buffering while leaving response buffering disabled in traefik similar to nginx's:

proxy_buffering off;
proxy_request_buffering on;

there is a case for me to limit the request sizes (because it is mostly json rpc) while the server may respond with large files. anything over 1gb already slows down the response time since traefik buffers it into the disk first.

Maybe check Buffering middleware.

i left maxResponseBodyBytes and memResponseBodyBytes to its default since i only need request buffering. i definitely dont want the proxy to limit the response size in any way but not sure what should be the value of memResponseBodyBytes to disable buffering completely.