Maximum body size accepted from any upstream HTTP response. Anything
larger is rejected with HttpClientError::BodyTooLarge to prevent
allocator DoS from a compromised upstream or malicious CDN edge.
Read a response body into a Vec<u8>, aborting as soon as the byte
count exceeds limit. Prevents a hostile or buggy upstream from
OOM-killing the process by streaming an unbounded body.