]> git.kaiwu.me - nginx.git/commitdiff
nginx-0.3.11-RELEASE import release-0.3.11
authorIgor Sysoev <igor@sysoev.ru>
Tue, 15 Nov 2005 14:49:57 +0000 (14:49 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Tue, 15 Nov 2005 14:49:57 +0000 (14:49 +0000)
    *) Bugfix: nginx did not pass the client request headers and body while
       proxying; the bug had appeared in 0.3.10.

docs/xml/nginx/changes.xml
src/core/nginx.h
src/http/modules/ngx_http_proxy_module.c

index 0a999126dc12fda3ad43eb1ef2d5f79a257862fe..001633aa3bd229c705c0304f69ffd50b93dbd5ed 100644 (file)
@@ -9,6 +9,22 @@
 <title lang="en">nginx changelog</title>
 
 
+<changes ver="0.3.11" date="15.11.2005">
+
+<change type="bugfix">
+<para lang="ru">
+nginx ÎÅ ÐÅÒÅÄÁ×ÁÌ ÐÒÉ ÐÒÏËÓÉÒÏ×ÁÎÉÉ ÔÅÌÏ ÚÁÐÒÏÓÁ É ÓÔÒÏËÉ ÚÁÇÏÌÏ×ËÁ ËÌÉÅÎÔÁ;
+ÏÛÉÂËÁ ÐÏÑ×ÉÌÁÓØ × 0.3.10.
+</para>
+<para lang="en">
+nginx did not pass while proxying the client request headers and body;
+bug appeared in 0.3.10.
+</para>
+</change>
+
+</changes>
+
+
 <changes ver="0.3.10" date="15.11.2005">
 
 <change type="change">
@@ -18,7 +34,7 @@
 </para>
 <para lang="en">
 the "valid_referers" directive and the "$invalid_referer" variable
-was moved to the new ngx_http_referer_module from the ngx_http_rewrite_module.
+were moved to the new ngx_http_referer_module from the ngx_http_rewrite_module.
 </para>
 </change>
 
index fc5d926e339a3f76fe745b04f64d7a972bfa3eaa..95d93ccb239a9b8ecab32adf2e115718aee765d8 100644 (file)
@@ -8,7 +8,7 @@
 #define _NGINX_H_INCLUDED_
 
 
-#define NGINX_VER          "nginx/0.3.10"
+#define NGINX_VER          "nginx/0.3.11"
 
 #define NGINX_VAR          "NGINX"
 #define NGX_OLDPID_EXT     ".oldbin"
index 5712ea04b2a67c671e104ffcc68621d5e655106a..f1581e9e757c7346f70b0d9b262966ff220e668a 100644 (file)
@@ -673,9 +673,9 @@ ngx_http_proxy_create_request(ngx_http_request_t *r)
             code = *(ngx_http_script_code_pt *) e.ip;
             code((ngx_http_script_engine_t *) &e);
         }
-    }
 
-    b->last = e.pos;
+        b->last = e.pos;
+    }
 
 #if (NGX_DEBUG)
     {
@@ -1621,7 +1621,7 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
         conf->body_set = prev->body_set;
     }
 
-    if (conf->body_set_len == 0) {
+    if (conf->body_source.data && conf->body_set_len == NULL) {
 
         ngx_memzero(&sc, sizeof(ngx_http_script_compile_t));