How can I map a url to a specific port number on elb with route53?

11/19/2019

Currently I have a ELB (spun up using kubernetes service 'LoadBalancer') that points a certain port let's just say 8100 to a node-port on my instances for an application that I spun up using helm/kubernetes. I can access the UI fine by using the public_dns_elb:8100.

Is it possible to make a route53 dns record at say test-app.com and then get to the application by doing test-app.com:8100 in my browser?

-- redux120
amazon-ec2
amazon-route53
amazon-web-services
kubernetes
kubernetes-helm

1 Answer

11/19/2019

No, that is not something browsers support. You must use ports 80 and 443 for the defaults.

-- coderanger
Source: StackOverflow