Jira mod_proxy in CPANEL
I was looking how to redirect JIRA from custom port to port 80 and after searching for a while found the solution: look for the file: pre_virtualhost_2.conf and paste the following (change the details with your details):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<VirtualHost IP:80> ServerName subd.domain.com ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://subd.domain.com:8181/ ProxyPassReverse / http://subd.domain.com:8181/ <Location /> Order allow,deny Allow from all </Location> </VirtualHost> |