From b8ddf754f9d4d46524cc05ae7d8884186bce44e4 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 28 May 2007 11:09:18 +0000 Subject: fix "proxy_pass https://" --- src/core/ngx_output_chain.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c index 4479edacc..e2dcc4c52 100644 --- a/src/core/ngx_output_chain.c +++ b/src/core/ngx_output_chain.c @@ -473,7 +473,7 @@ ngx_chain_writer(void *data, ngx_chain_t *in) size += ngx_buf_size(cl->buf); } - if (size == 0) { + if (size == 0 && !ctx->connection->buffered) { return NGX_OK; } @@ -489,6 +489,9 @@ ngx_chain_writer(void *data, ngx_chain_t *in) if (ctx->out == NULL) { ctx->last = &ctx->out; + } + + if (!ctx->connection->buffered) { return NGX_OK; } -- cgit