ベース URL の設定
The base URL is the URL via which users access Jira applications. It can be any address you select, but it must be set to the same URL that’s used by browsers to view your Jira instance.
If Jira is installed to run in a non-root context path (i.e. it has a context path), then the server Base URL should include this context path. For example, if Jira is running at http://www.foobar.com/Jira
, then the server base URL should be http://www.foobar.com/Jira
.
Modifying Jira base URL
Jira automatically detects the base URL during setup. However, you may need to set it manually if your site's URL changes or if you set up Jira from a different URL to the one that will be used to publicly access the app.
次のすべての手順を行うには、Jira システム管理者グローバル権限を持つユーザーとしてログインする必要があります。
ベース URL を設定する方法
- 画面右上で [管理] > [システム] の順に選択します。
In the sidebar, select General configuration.
Select Edit settings.
[ベース URL] テキスト ボックスで、新しい URL を入力します。
[更新] を選択して変更を保存します。
Using different URLs
If you configure a different base URL or if users use some other URL to access Jira, you may encounter errors while viewing some pages.
Changing the context path
If you change the context path of your base URL, you may also need to edit the web server's server.xml
file to reflect the new path:
- Jira サーバーを停止します。
- Go to your Jira "destination directory". This is the directory where the Confluence installation files are stored. For example,
C:\Program Files\Atlassian\JIRA
. Let's call this directory '{Jira_INSTALLATION}
'. - {
Jira_INSTALLATION}\conf\server.xml
で構成ファイルを編集します。 Context
要素のpath
属性の値を変更して、コンテキスト パスを反映します。たとえば、http://www.foobar.com/Jira
で Jira を実行している場合、path
属性は以下のようにします。<context path="/JIRA" docBase="../JIRA" debug="0" reloadable'"false" useHttpOnly="true">
- ファイルを保存します。
Setting base URLs behind proxies
プロキシの後ろで実行する場合、プロキシ名がベース URL とマッチしていることを確認します。例: proxyName="foobar.com" proxyPort="443" scheme="https"
。これにより、情報を適切に渡すことができます。
この情報は、{Jira_INSTALLATION}\conf\server.xml
の Connector
要素に追加する必要があります。