- JIRA 7 Administration Cookbook(Second Edition)
- Patrick Li
- 200字
- 2021-07-16 10:48:07
Setting up the context path for JIRA
If you have multiple web applications running on the same domain, you might want to set up a context path for JIRA—for example, http://example.com/jira
, where /jira
is the context path.
How to do it...
Perform the following steps to set up a context path for JIRA:
- Shut down JIRA if it is running.
- Open up
JIRA_INSTALL/conf/server.xml
in a text editor. - Locate the following line and enter the context path for the path attribute—for example,
path="/jira"
:<Contextpath="/jira"docBase="${catalina.home} /atlassian- jira" reloadable="false" useHttpOnly="true">
- Save the file and restart JIRA. If you are doing this after JIRA is installed, you will have to update JIRA's Base URL option so that its links will reflect the change.
- Then, log into JIRA as an administrator.
- Navigate to Administration | Systems | General Configuration.
- Click on the Edit Settings button.
- Enter the fully qualified URL into JIRA, including the context path in the Base URL field.
- Click on Update to apply the change.
After you have all this set up, you will be able to access JIRA with the new context path and all the links, including the ones from JIRA's notification e-mails, will be the context path in the URL.
推薦閱讀
- Embedded Linux Projects Using Yocto Project Cookbook
- 工程軟件開發技術基礎
- 算法基礎:打開程序設計之門
- Three.js開發指南:基于WebGL和HTML5在網頁上渲染3D圖形和動畫(原書第3版)
- Spring Cloud、Nginx高并發核心編程
- 鋒利的SQL(第2版)
- 精通網絡視頻核心開發技術
- UVM實戰
- Scala for Machine Learning(Second Edition)
- C語言程序設計實訓教程與水平考試指導
- IoT Projects with Bluetooth Low Energy
- Fastdata Processing with Spark
- 從零開始學Selenium自動化測試:基于Python:視頻教學版
- Continuous Delivery and DevOps:A Quickstart Guide Second Edition
- Spring Data JPA從入門到精通