mirror of
https://github.com/nginx/nginx.git
synced 2026-06-09 00:42:38 -04:00
do not disable keepalive after POST requests for MSIE 7+
This commit is contained in:
parent
8164f329fe
commit
b681f7184c
1 changed files with 1 additions and 1 deletions
|
|
@ -785,7 +785,7 @@ ngx_http_handler(ngx_http_request_t *r)
|
|||
|
||||
if (r->keepalive) {
|
||||
|
||||
if (r->headers_in.msie) {
|
||||
if (r->headers_in.msie6) {
|
||||
if (r->method == NGX_HTTP_POST) {
|
||||
/*
|
||||
* MSIE may wait for some time if an response for
|
||||
|
|
|
|||
Loading…
Reference in a new issue