I user a nginx to proxy a java web server,and want to add a cookie when proxy the url,my config :<br><br><br> location /el {<br>        proxy_set_header Cookie &quot;mysession=$arg_ccvalue&quot;;<br>        proxy_pass   <a href="http://172.16.1.30:8080/trance">http://172.16.1.30:8080/trance</a>;<br>
<br>        }<br>but i can get the cookie in my java web application<br><br>if anyone can give some advice?<br><br>thanks<br><br><br>