comparison expect-100-continue.t @ 63:53eff3a83886

Tests: fix expect-100-continue for 0.7.31. In nginx 0.7.31 processing of "Expect" header only happens while actually reading request body. Add proxy_pass as it always reads request body.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 26 Jan 2009 03:52:57 +0300
parents 2020bf9c75ce
children 726c3c2a8b8c
comparison
equal deleted inserted replaced
62:9a5fab7c0dec 63:53eff3a83886
41 proxy_temp_path %%TESTDIR%%/proxy_temp; 41 proxy_temp_path %%TESTDIR%%/proxy_temp;
42 42
43 server { 43 server {
44 listen 127.0.0.1:8080; 44 listen 127.0.0.1:8080;
45 server_name localhost; 45 server_name localhost;
46 location / {
47 proxy_pass http://localhost:8080/local;
48 }
49 location /local {
50 }
46 } 51 }
47 } 52 }
48 53
49 EOF 54 EOF
50 55