Set a context path for Atlassian applications
This document outlines the steps if you wish that your Atlassian application to be accessed on a context path, such as http://ourcompany.com/<contextpath>
.
For Confluence, please refer to the Configuring the Server Base URL product documentation.
1. アトラシアン アプリケーションを停止する
2. コンテキスト パスを設定する
Fisheye および Crucible
FishEye または Crucible をプロキシする場合、管理領域から Jetty の Web コンテキスト パスを設定します。「Fisheye の web サーバーを設定する」を参照してください。
JIRA applications, Bitbucket Server, Bamboo
これらのアトラシアンのサーバー アプリケーションのいずれかをプロキシする場合、Tomcat の server.xml
ファイルでコンテキスト パスを次のように設定します。
Tomcat の server.xml
設定ファイルには、次のような Context
ディレクティブがあります (Crowd を除く)。
<Context path="" docBase="${catalina.home}/atlassian-<atlassianapp>" reloadable="false" useHttpOnly="true">
ディレクティブを変更して、新しいコンテキスト パスを追加します。
<Context path="/<contextpath>" docBase="${catalina.home}/atlassian-<atlassianapp>" reloadable="false" useHttpOnly="true">
<contextpath
> には独自の値を使用します。一般に、各アプリケーションで異なるコンテキスト パスを使用します。
path
の値の先頭では path="<contextpath>"
ではなく path="/<contextpath>"
のように、スラッシュ (/
) が必要です。
Use these instructions to Removing the 'crowd' Context from the Application URL.
Note: You can't use /resources
as your context path for Confluence, as this is used by Confluence, and will cause problems later on.