changeset 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 9a5fab7c0dec
children 726c3c2a8b8c
files expect-100-continue.t
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/expect-100-continue.t
+++ b/expect-100-continue.t
@@ -43,6 +43,11 @@ http {
     server {
         listen       127.0.0.1:8080;
         server_name  localhost;
+        location / {
+            proxy_pass http://localhost:8080/local;
+        }
+        location /local {
+        }
     }
 }