# HG changeset patch # User Ruslan Ermilov # Date 1577105146 -10800 # Node ID d0d6cf5031a3401e038fef645bc4b8e761ffd669 # Parent db8df9cd84c8d5283b000c6b60775d4f435fb31e Discard request body when redirecting to a URL via error_page. Reported by Bert JW Regeer and Francisco Oca Gonzalez. diff --git a/src/http/ngx_http_special_response.c b/src/http/ngx_http_special_response.c --- a/src/http/ngx_http_special_response.c +++ b/src/http/ngx_http_special_response.c @@ -623,6 +623,12 @@ ngx_http_send_error_page(ngx_http_reques return ngx_http_named_location(r, &uri); } + r->expect_tested = 1; + + if (ngx_http_discard_request_body(r) != NGX_OK) { + r->keepalive = 0; + } + location = ngx_list_push(&r->headers_out.headers); if (location == NULL) {