<div class="__aliyun_email_body_block"><p>Hello,in nginx1 use proxy_pass to nginx2,<!--StartFragment--><span style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; display: inline !important; float: none;">when http method is get that is ok,</span>but when http method is post ,nginx2 has no access log,nginx1's response  status is 302;  help please,thank you!!</p>
<p>nginx-config details:</p>
<p>nginx1-config:</p>
<p>server { <br />  listen 80; <br />  server_name ocs.aliyun.test; <br />  access_log "pipe:/usr/sbin/cronolog /system/logs/ocs.%Y-%m-%d.log" aliyun_com; <br />  location /widget/ { <br />   proxy_pass http://openwidget.aliyun.test/; <br />   proxy_redirect http://openwidget.aliyun.test/ /widget/; <br /> } <br />} </p>
<p> </p>
<p>nginx2-config:</p>
<p>server { <br />  listen 80; <br />  server_name openwidget.aliyun.test; <br />  access_log "pipe:/usr/sbin/cronolog /system/logs/openwidget.%Y-%m-%d.log" aliyun_com; <br />  location / { <br />   proxy_pass http://127.0.0.1:38782/openWidget/; <br />   proxy_redirect http://openwidget.aliyun.test/openWidget/ /; <br /> } <br />} </p></div>