<div dir="ltr"><div>Hi <br><br></div><div>we are using nginx as proxy the request to back-end t web application , but some times when users accessing webapp via proxy , they faced some unusual behaviors like buttons are not clicking , Dropdown lists are not listing data . <br>
<br></div><div>this is my nginx reverse proxy configuration  , is there any modification that i need to do to avoid such a issues , please advice <br></div><div><br>    location /webapp {<br>      proxy_set_header X-Forwarded-Host $host;<br>
      proxy_set_header X-Forwarded-Server $host;<br>      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>      proxy_pass <a href="http://192.168.1.16:8090/webapp">http://192.168.1.16:8090/webapp</a>;<br>
      proxy_redirect off;<br>    }<br><br></div><div>Thank You<br></div><div>John<br></div><div><br></div></div>