Is there an Amazon Web Services service which will translate ports, such as port 8001 to port 80?
I like to host multiple websites behind a single static IP address, and I use port forwarding to route the different ports to various web servers behind my firewall which does the port forwarding.
It would be nice if I could implement a table like this somewhere inside an AWS service:
Client requests mydomain.com:80
-> AWS Route 53 translates to 123.123.123.123:8001
-> My firewall port forwards 8001
to the web server inside the LAN.
If AWS does not offer this service, then is there another out of the box solution? I could write my own app to do this and run it on an EC2 instance, but I prefer to use an existing tool if one is available.