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.