Sometimes you may need to redirect a simple URL like jira.company.com to something like jira.company.com:8080 for easier access. A simple Apache Proxy will solve this.
<VirtualHost *:80>
ServerName yourdomain.com
ProxyPass / http://yourdomain:8080
ProxyReverse / http://yourdomain.com