<div dir="ltr"><div>Hello,<br>I have NGINX acting as reverse proxy and I would like to achieve something like this:<br><br>When I get a request like this GET <a href="http://app1.mydomain.aa.com/aaa/bbb">http://app1.mydomain.aa.com/aaa/bbb</a> it should be converted to:<br>GET <a href="http://app1.mydomain.bb.com/aaa/bbb">http://app1.mydomain.bb.com/aaa/bbb</a> so such directive will do the job:<br><br>proxy_pass <a href="http://app1.mydomain.bb.com">http://app1.mydomain.bb.com</a>;<br>problem is that I want to convert host part automatically (regex) basing on incoming requests to NGINX  - app1.mydomain are not fixed they are changing very often.<br></div>Is it possible? Can anyone get a clue how proxy_pass statement should look like? <br></div>