comparison proxy_request_buffering.t @ 545:dbf8fb0f3d30

Tests: fixed unbuffered request body tests. In particular, made sure that the whole request body is read on backend.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 08 Apr 2015 20:16:40 +0300
parents e7e3ced702f5
children 907e89fba9c3
comparison
equal deleted inserted replaced
544:e82bbe71f50c 545:dbf8fb0f3d30
78 server { 78 server {
79 listen 127.0.0.1:8081; 79 listen 127.0.0.1:8081;
80 server_name localhost; 80 server_name localhost;
81 81
82 location / { 82 location / {
83 return 204; 83 proxy_pass http://127.0.0.1:8080/discard;
84 } 84 }
85 location /404 { } 85 location /404 { }
86 } 86 }
87 } 87 }
88 88