I am a .Net programmer, lately developing a website in Jsp, using Jetty. I use Eclipse and the Maven-Jetty plugin.
I have a virtual private server, which has IIS installed and is serving .NET websites. My domain name (for the Jsp website) redirects to this server.
My question is: How do I connect the domain name to the website in Jetty? Jetty listens to port 8080, and IIS to port 80.
I tried configuring a virtual host in a Jetty configuration file (jetty-web.xml) (followed this manual), the result is: when I open a browser inside my server and navigate to mydomainname.com:8080 I get to the website. But if I do it externally, I get nothing.
- What do I need to configure in order to get to my website?
- How do I overcome the 8080 port number? or do I need to redirect my domain name to this port?
Thank You