mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
44 lines
1.3 KiB
Markdown
44 lines
1.3 KiB
Markdown
![Atlassian Jira Server](https://www.atlassian.com/dam/wac/legacy/jira_logo_landing.png)
|
|
|
|
|
|
## Memory / Heap Size
|
|
|
|
If you need to override Confluence Server's default memory allocation, you can control the minimum heap (Xms) and maximum heap (Xmx) via the below environment variables.
|
|
|
|
* `JVM_MINIMUM_MEMORY` (default: 1024m)
|
|
|
|
The minimum heap size of the JVM
|
|
|
|
* `JVM_MAXIMUM_MEMORY` (default: 1024m)
|
|
|
|
The maximum heap size of the JVM
|
|
|
|
## Reverse Proxy Settings
|
|
|
|
If Confluence is run behind a reverse proxy server, then you need to specify extra options to make Confluence aware of the setup. They can be controlled via the below environment variables.
|
|
|
|
* `CATALINA_CONNECTOR_PROXYNAME` (default: NONE)
|
|
|
|
The reverse proxy's fully qualified hostname.
|
|
|
|
* `CATALINA_CONNECTOR_PROXYPORT` (default: NONE)
|
|
|
|
The reverse proxy's port number via which Confluence is accessed.
|
|
|
|
* `CATALINA_CONNECTOR_SCHEME` (default: http)
|
|
|
|
The protocol via which Confluence is accessed.
|
|
|
|
* `CATALINA_CONNECTOR_SECURE` (default: false)
|
|
|
|
Set 'true' if CATALINA_CONNECTOR_SCHEME is 'https'.
|
|
|
|
## JVM configuration
|
|
|
|
If you need to pass additional JVM arguments to Confluence such as specifying a custom trust store, you can add them via the below environment variable
|
|
|
|
* `JVM_SUPPORT_RECOMMENDED_ARGS`
|
|
|
|
Additional JVM arguments for Confluence
|
|
|
|
|