Hi - new to Jira and trying to add Custom Fields to my Project so I can see them in List and Issues - I've added the Custom Field but can't see how I make this visible in my Project Issues and List - Help says go to Project Settings - Issue Layout, but I don't seem to have this option?
Thanks
SWorry but I don't have any "General Configuration" but "System".
I own JIRA software and not Confluence.
Anyway I already set the Base Url to the public one (http://jira.myserver.com) but it seems to ignore it and keep using the private one (http://JIRASERVER:8095)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you don't have "general configuration", how are you setting the base url?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Make sure you configure the JIRA application base url to the relevant address:
Go to Admin->System->General Configuration
Click Edit Settings
Change Base URL
As you also wish to change the port from 8095 to 80 change server.xml:
<Service name="Catalina">
<Connector port="8095"
maxThreads="150"
minSpareThreads="25"
connectionTimeout="20000"
enableLookups="false"
maxHttpHeaderSize="8192"
protocol="HTTP/1.1"
useBodyEncodingForURI="true"
redirectPort="8443"
acceptCount="100"
disableUploadTimeout="true"
proxyName="jira.myserver.com"
proxyPort="80"
scheme="http"/>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.