summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_proxy.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2024-09-10http: Fix router process crash whilst using proxyZhidao HONG1-3/+4
When the client closes the connection before the upstream, the proxy's error handler was calling cleanup operation like peer close and request close twice, this fix ensures the cleanup is performed only once, improving proxy stability. Closes: https://github.com/nginx/unit/issues/828
2021-07-26Router: renamed nxt_http_proxy_create() as nxt_http_proxy_init().Zhidao HONG1-6/+13
No functional changes.
2020-09-07Upstream connection was not closed for short chunked response.Igor Sysoev1-27/+3
2020-06-23Upstream chunked transfer encoding support.Igor Sysoev1-31/+11
2020-03-06Round robin upstream added.Igor Sysoev1-29/+95
2019-11-14Processing inconsistent proxied response length.Igor Sysoev1-2/+25
Keepalive connection is disabled if upstream response length differs from specified in the "Content-Length" field value.
2019-11-14Initial proxy support.Igor Sysoev1-0/+380