I have an application on tomcat on address http://myserver:8080, but I want it to be server on specific url, e.g. http://myserver/jira. So I want everything that starts with myserver/jira to be mapped to myserver:8080:
http://myserver/jira => http://myserver:8080
http://myserver/jira/Dashboard => http://myserver:8080/Dashboard
How can I do it?