How to set Reverse Proxy and SSL parameters while running Atlassian Docker Images
プラットフォームについて: Data Center のみ - この記事は、Data Center プラットフォームのアトラシアン製品にのみ適用されます。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
When running Atlassian products (Jira, Confluence or Bamboo) in Docker, the Tomcat's conf/server.xml
file is automatically generated during container startup based on several environment variables.
The default container image does not have any reverse proxy configuration. The reverse proxy values can be passed during the container startup.
環境
All supported Atlassian Docker image versions.
ソリューション
To set the reverse proxy values and maintain them please add the following environment variables to the Jira/Confluence/Bamboo Server Docker Container.
When executing via Docker Compose with a YAML file, adding the environment variables as:
...
confluence:
...
...
environment:
- "ATL_PROXY_NAME=<reverse_proxy_url>"
- "ATL_PROXY_PORT=<reverse_proxy_port>"
- "ATL_TOMCAT_SCHEME=https"
- "ATL_TOMCAT_SECURE=true"
...
When executing directly via 'docker run' command, adding the following variables:
docker run --name confluence .... -e ATL_PROXY_NAME='<reverse_proxy_url>' -e ATL_PROXY_PORT='<reverse_proxy_port>' -e ATL_TOMCAT_SCHEME='https' -e ATL_TOMCAT_SECURE='true' ....
If you are not using SSL on your reverse proxy URL, use 'http' and 'false' with the parameters ATL_TOMCAT_SCHEME
and ATL_TOMCAT_SECURE
, or remove them - as they are already set to 'http' and 'false' by default in the docker image.