hi, everyone, <br><br> nginx version is 0.8.53,<br>configure (http definition)  is :<br>====================================<br>http{<br>    upstream my_loads {<br>        server 10.10.1.12;<br>        server 10.10.1.13;<br>
    }<br><br>    log_format combined_addsvr &#39;$remote_addr - $remote_user [$time_local]  &#39;<br>                        &#39;&quot;$request&quot; $status $body_bytes_sent &#39;<br>                        &#39;&quot;$http_referer&quot; &quot;$http_user_agent&quot; $upstream_addr $upstream_cache_status &#39;;<br>
    access_log logs/access.log combined_addsvr;<br><br>    server {<br>        listen 80;<br>        server_name <a href="http://mytest.com">mytest.com</a>;<br>        client_max_body_size 100m;<br>        proxy_buffering off;<br>
        proxy_read_timeout 120;<br>        proxy_send_timeout 120;<br>        client_body_timeout 120;<br>        send_timeout  120;<br><br>        location / {<br>            proxy_pass <a href="http://my_loads/">http://my_loads/</a>;<br>
            proxy_set_header Host $host;<br>            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>        }<br>    }<br>===========================================<br><br>there is a strange line in log file: (sorry to use xxx replace of true url)<br>
192.168.1.1 - - [14/Jun/2011:20:53:24 +0800]  &quot;POST /1.php HTTP/1.1&quot; 200 3729558 &quot;<a href="http://mytest.com/xxx">http://mytest.com/xxx</a>&quot; &quot;Mozilla/4.0 (compatible; MSIE 7.0;)&quot; <a href="http://10.10.1.12:80">10.10.1.12:80</a>, <a href="http://10.10.1.13:80">10.10.1.13:80</a> -<br>
<br>when nginx deals with 1.php, it sends  POST to  all upstream servers!<br><br>the next is normal log:<br>192.168.1.1 - - [14/Jun/2011:20:53:44 +0800]  &quot;POST /1.php HTTP/1.1&quot; 302 2 &quot;<a href="http://mytest.com/xxx">http://mytest.com/xxx</a>&quot; &quot;Mozilla/4.0 (compatible; MSIE 7.0;)&quot; <a href="http://10.10.1.12:80">10.10.1.12:80</a> -<br>
<br>Could anyone tell me if it is  a bug or just any configure improperly?  thanks.<br><br><br><br><br>