Changes between Initial Version and Version 1 of Ticket #350
- Timestamp:
- 05/11/13 17:25:26 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #350
- Property Status new → closed
- Property Resolution → fixed
-
Ticket #350 – Description
initial v1 4 4 5 5 The 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 {{{ 7 7 location = /test.html { 8 8 add_after_body /vpost; … … 16 16 proxy_pass http://xxxxx; 17 17 } 18 18 }}} 19 19 Reference: http://mailman.nginx.org/pipermail/nginx-devel/2013-May/003669.html 20 20 {{{ 21 21 diff -r 0ebf6344db81 src/http/modules/ngx_http_proxy_module.c 22 22 --- a/src/http/modules/ngx_http_proxy_module.c Fri Apr 26 11:11:03 2013 +0800 … … 32 32 { ngx_null_string, NULL, NULL, 0, 0, 0 } 33 33 }; 34 }}}