How to redirect a domain + port to a simple domain in Amazon EC2? -


i have vpn running on amazon, it's working simple domain, www.domain.com, i'm running custom aplication called openerp in 8069 port, need enter www.domain.com:8069 have acces app. love acceso tipyng www.domain.com

so question is... can redirect domain port simple domain??

extra information:

server ubuntu 13.10, openerp running on amazon instance.

greetings!

dns not know "ports", not in dns level. need machine listen port 80 , redirect (or reverse proxy).

the simplest solution have openrp listen on port 80. why not doing that?

another possible solution have another process on host listen port 80 , either redirect or reverse proxy. there simple apache , nginx configurations that.

another trivial solution have /etc/services entry -- simple tcp pass-thru port 80 port 8069.

finally, use external host (another host) that, obvious suggestion being ec2 load balancer. configure load balancer fwd traffic port 80 on host.


Comments