Created by: Kami
Currently if a backend doesn't return Connection
header, http-proxy sets it to Connetion: close
regardless of the request HTTP version.
We should respect request HTTP version and if HTTP 1.1 is used, return Connection: keep-alive
. *
- Quoted from the RFC:
...
to indicate that the connection will be kept open for the next request. The Connection header field with a keep-alive keyword must be sent on all requests and responses that wish to continue the persistence. The client sends requests as normal and the server responds as normal, except that all messages containing an entity body must have a length that can be determined without closing the connection (i.e., each message containg an entity body must have a valid Content-Length, be a multipart media type, or be encoded using the "chunked" transfer coding, as described in Section 7.2.2).
...