I am trying to configure a Reverse Proxy in my AWS account:
The Reverse proxy should forward request to internal servers based on their URL structure, e.g.:
example.com/question/* -> 192.168.0.1
example.com/answer/* -> 192.168.0.2
example.com -> 192.168.0.3
I can implement a Reverse Proxy using Apache's mod_proxy
, and I wonder if AWS has a built-in solution for that.