hi all,
I installed a 5.1 version JIRA on windows 2008 server and changed the Base URL to something like: http://jira.mytest.com
However, since I set JIRA service on Port 8080, when i try to access to JIRA, i have to enter http://jira.mytest.com:8080 in my browser address box.
Anyone knows what i need to do, so users don't need to enter the port number?
Thank you in advance.
Changin base url won't change how it actually works. You will have to either run the application on port 80 or do some apache/IIS reverse proxy setup that makes it available on port 80.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your reply. Could you provide me more details? I dont have IIS or apache installed. Tomcat comes with JIRA installation. What can I do now?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jobin, I have read the document serveral time, but still not understand it well.
According to the doc, Apache 2.2 must be installed, correct?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you need Apache.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you need to do something like this:
https://answers.atlassian.com/questions/111216/jira-port-issue/111247
just create a vhost conf file and add something like
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
<Location />
Order allow,deny
Allow from all
</Location>
this is how i did it...depends on the connector you are using..
if you don't use ajp this can be easily changed to http also. edit to fit your installation...
i.e. if you use http and port 8080 it will look like
ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe you can add the port number to the DNS entry pointer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your reply. Could you provide me more details? How to add it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This has nothing to do with DNS. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.