What I have:
- Domain, registered by GoDaddy (lets imagine that it named mysite.com)
- AWS EC2 server instance, Windows Server 2012 R2
- Static IP address provided by Amazon Elastic IP and assigned to this server
- Installed Jira on port 7010
- Installed Confluence on port 7020
What I need:
- Make Jira application accessible on
http://jira.mysite.com
- Make Confluence application accessible on
http://confluence.mysite.com
- Make ability to route any additional application on my server from any port to
http://subdomain.mysite.com
(this is why I can't use single instance of tomcat on port 80, because I don't know what sites I will needed to add in future) - Ability to install SSL certificate to all of above
What I should not need to use:
- Any payable service (for example AWS load balancer)
How can I setup it? Maybe with IIS, apache, nginx or any another tool? Or maybe I don't understand something and it can be performed by another way?
P.S. I am not administrator, my specialization is software developer, so, please describe it as for very-very beginner :)