Changes between Initial Version and Version 1 of Ticket #350


Ignore:
Timestamp:
05/11/13 17:25:26 (11 years ago)
Author:
Maxim Dounin
Comment:

Patch committed, [bfb99b75833b].

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #350

    • Property Status newclosed
    • Property Resolutionfixed
  • Ticket #350 – Description

    initial v1  
    44
    55The following simple config can reproduce the problem, where xxxxx is a place that can receive post data. curl --data-binary "xxxxxxxxxxxxxxx" localhost/test.html will cause the client hang.
    6 
     6{{{
    77      location = /test.html {
    88        add_after_body /vpost;
     
    1616        proxy_pass http://xxxxx;
    1717      }
    18 
     18}}}
    1919Reference: http://mailman.nginx.org/pipermail/nginx-devel/2013-May/003669.html
    20 
     20{{{
    2121diff -r 0ebf6344db81 src/http/modules/ngx_http_proxy_module.c
    2222--- a/src/http/modules/ngx_http_proxy_module.c  Fri Apr 26 11:11:03 2013 +0800
     
    3232     { ngx_null_string, NULL, NULL, 0, 0, 0 }
    3333 };
     34}}}