Recognized System Properties
Confluence supports some configuration and debugging settings that can be enabled through Java system properties. System properties are usually set by passing the -D
flag to the Java virtual machine in which Confluence is running. See the full instructions: Configuring System Properties.
Since | Default Value | Effect |
---|---|---|
atlassian.forceSchemaUpdate | ||
1.0 |
| By default, Confluence will only run its database schema update when it detects that it has been upgraded. This flag will force Confluence to perform the schema update on system startup. |
confluence.home | ||
1.0 | Any filesystem path | If this system property is set, Confluence will ignore the contents of the |
confluence.dev.mode | ||
1.0 |
| Enables additional debugging options that may be of use to Confluence developers (additionally it changes spring bean creation to use lazy initialization by default to decrease startup time). Do not enable this flag on a production system. |
confluence.disable.mailpolling | ||
2.4 |
| If set to "true", will prevent Confluence from retrieving mail for archiving within spaces. Manually triggering "check for new mail" via the web UI will still work. This property has no effect on outgoing mail |
confluence.i18n.reloadbundles | ||
1.0 |
| Setting this property will cause Confluence to reload its i18n resource bundles every time an internationalized string is looked up. This can be useful when testing translations, but will make Confluence run insanely slowly. |
confluence.ignore.debug.logging | ||
1.0 |
| Confluence will normally log a severe error message if it detects that DEBUG level logging is enabled (as DEBUG logging generally causes a significant degradation in system performance). Setting this property will suppress the error message. |
confluence.jmx.disabled | ||
3.0 |
| If set to "true", will disable Confluence's JMX monitoring. This has the same effect as setting the "enabled" property to false in |
confluence.optimize.index.modulo | ||
2.2 |
| Number of index queue flushes before the index is optimized. This property was removed in Confluence 5.2 when optimize index was removed. |
confluence.plugins.bundled.disable | ||
2.9 |
| Starts confluence without bundled plugins. May be useful in a development environment to make Confluence start quicker, but since bundled plugins are necessary for some of Confluence's core functionality, this property should not be set on a production system. |
atlassian.indexing.contentbody.maxsize | ||
3.0 | 1048576 | When a file is uploaded, its text is extracted and indexed. This allows people to search for the content of a file, not just the filename. If the amount of content extracted from the file exceeds the limit set by this property (default is 1MB, in bytes), the file's contents will still be indexed and searchable, but will not appear when the file is returned in search results. Increasing this limit may make displaying search results slower. See Configuring Attachment Size for more info. |
atlassian.mail.fetchdisabled | ||
3.5 |
| Disables mail fetching services for IMAP and POP |
atlassian.mail.senddisabled | ||
3.5 |
| Disables sending of mail |
atlassian.disable.caches | ||
2.4 |
| Setting this property will disable conditional get and expires: headers on some web resources. This will significantly slow down the user experience, but is useful in devlopment if you are frequently changing static resources and don't want to continually flush your browser cache. |
confluence.html.encode.automatic | ||
2.9 | Setting this property forces the antixss encoding on or off, overriding the behavior dictated by settings. The default behavior differs between Confluence versions. | |
org.osgi.framework.bootdelegation | ||
2.10 | empty | Comma-separated list of package names to provide from application for OSGi plugins. Typically required when profiling Confluence. For example: "com.jprofiler.,com.yourkit.". |
confluence.diff.pool.size | ||
3.1 |
| Maximum number of concurrent diffs. When that number is exceeded, additional attempts by RSS feeds to create diffs are ignored and logged. (The RSS requests succeed, they are just missing diffs). |
confluence.diff.timeout | ||
3.1 |
| Number of milliseconds to wait for a diff operation (comparing two page versions) to complete before aborting with an error message. |
confluence.html.diff.timeout | ||
4.0 | 30000 | Number of milliseconds to wait for a diff operation (comparing two page versions) to complete before aborting with an error message. |
atlassian.user.experimentalMapping | ||
2.10 |
| Setting this property changes the relationship between local users and local groups to reduce performance degradation when adding a local user to a local group with a large number of users. Please note, setting this property can slow down other user management functions. We recommend that you set it only if you are experiencing performance problems when adding local users to large local groups. Please refer to CONF-12319, fixed in Confluence 3.1.1. |
confluence.import.use-experimental-importer | ||
3.2 |
| Setting this property changes Confluence to use the Experimental XML Importer. It is designed to be a more stable implementation but, at the time of the release of 3.2, the importer is largely untested and thus not supported. |
atlassian.webresource.disable.minification | ||
3.3 |
| Disables automatic minification of JavaScript and CSS resources served by Confluence. |
index.queue.thread.count | ||
3.3 | See "Effect" | Sets the number of threads to be used for the reindex job. The value has to be in the range of 1 to 50 (inclusive), i.e. at least one thread but no more than 50 threads will be used. If the property is not set, the number of threads used is equal to the number of processors available. If the number of processors is greater than 50, then a maximum of 50 threads will be used. Examples:
Note: For Confluence versions from 3.3 to 5.6 the maximum thread count is 10. |
index.queue.batch.size | ||
3.3 | 1500 | Size of batches used by the indexer. Reducing this value will reduce the load that the indexer puts on the system, but indexing takes longer. Increasing this value will cause indexing to be completed faster, but puts a higher load on the system. Normally this setting does not need tuning. |
password.confirmation.disabled | ||
3.4 |
| This property disables the password confirmation functionality that Confluence uses as an additional security measure. With this property set, Confluence will not require password confirmation for the following actions: administrative actions, change of email address and Captcha for failed logins. Disabling password confirmations is useful if you are using a custom authenticator. |
confluence.browser.language.enabled | ||
3.5 |
| Setting this property to "false" disables the detection of browser language headers, effectively restoring Confluence behavior to that of earlier releases. Setting this property to "true" enables the detection of the language headers sent by the browser. Confluence will change the UI language based on the browser headers. See documentation on how users can choose a language preference. |
upm.pac.disable | ||
Universal Plugin Manager 1.5 |
| When this property is set to true, then UPM will not try to access the The Atlassian Marketplace. This is useful for application servers that do not have access to the Internet. See the UPM documentation. |
confluence.reindex.documents.to.pop | ||
3.5.9 |
| Indicates how many objects each indexing thread should process at a time during a full re-index. Please note that this number does not include attachments. |
confluence.reindex.attachments.to .pop | ||
3.5.9 |
| Indicates how many attachments each indexing thread should process at a time during a full re-index. |
confluence.upgrade.active.directory | ||
3.5.11 |
| Forces Confluence to treat any LDAP directories it migrates as Active Directory, rather than relying on looking for sAMAccountName in the username attribute. This is necessary if you are upgrading from before Confluence 3.5, and need to use an attribute other than sAMAccountName to identify your users and are seeing |
confluence.context.batching.disable | ||
4.0 | false | Disables batching for web resources in contexts (e.g. editor, main, admin). Useful for diagnosing the source of javascript or CSS errors. |
com.atlassian.logout.disable.session.invalidation | ||
4.0 |
| Disables the session invalidation on log out. As of 4.0 the default behavior is to invalidate the JSession assigned to a client when they log out. If this is set to true the session is kept active (but the user logged out). This may be valuable when using external authentication systems, but should generally not be needed. |
officeconnector.spreadsheet.xlsxmaxsize | ||
4.0.5 | 2097152 | Indicates the maximum size in bytes of an Excel file that can be viewed using the viewxls macro. If empty, the maximum size defaults to 2Mb. See CONF-21043 for more details. |
com.atlassian.confluence.extra.calendar3.display.events.calendar.maxpercalendar | ||
200 | Specifies the maximum number of events per calendar. This property is effective only if the Team Calendars plugin is installed on your Confluence site. | |
com.atlassian.confluence.allow.downgrade | ||
4.3.2 | false | Allows Confluence to start up against the home directory of a newer version of Confluence. Note that running Confluence like that is unsupported. You should only turn this on if you know what you are doing. See After Downgrading, Confluence Will No Longer Run for details. |
atlassian.confluence.plugin.scan.directory | ||
4.3.6 | Specifies the location of your instance's plugins and loads any plugin jars available in that directory upon startup. | |
confluence.skip.reindex | ||
false | Generally a full reindex is not required when upgrading Confluence, but there may be some occasions where an upgrade task will kick-off the reindex process. Set this property to true, to skip rebuilding the search index when Confluence is upgraded. This can be useful if you have a very large site and wish to delay rebuilding the index until a time after the upgrade is complete. | |
reindex.thread.count | ||
5.2 | Sets the number of threads to be used for a one-off reindex job. The value has to be in the range of 1 to 50 (inclusive), i.e. at least one thread but no more than 50 threads will be used. This system property does not affect the incremental indexing that Confluence does. From Confluence 7.14 the default value of this property is calculated based on either the number of available CPUs or free memory, whichever is lower. | |
reindex.attachments.thread.count | ||
5.2 | 4 | Sets the number of concurrent threads to be used when reindexing attachments, and allows you to reduce the concurrency for these more memory-intensive index items. From Confluence 7.14 the default value of this property is calculated based on either the number of available CPUs or free memory, whichever is lower. Minimum 4 threads. |
atlassian.confluence.export.word.max.embedded.images | ||
5.2 | 1000 | This property limits the number of images that are included when you export a Confluence page to Word. When you export a page with many large images to Word, all the images are loaded into memory, which can then cause out-of-memory errors affecting your entire Confluence site. You can temporarily increase this limit, using this system property, if you need to export a page with lots of images. The default value of this property was increased from 50 to 1000 in Confluence 7.20.2. |
confluence.mbox.directory | ||
5.4.1 | Setting this property defines the directory on your Confluence server where mailboxes can be imported from (for use with the Confluence Mail Archiving system app). Mailboxes are not able to be imported from any other location. We recommend administrators create a directory in the Confluence Home directory specifically for this purpose. Mail cannot be imported from the server until this system property is set. | |
confluence.search.max.results | ||
5.5 | 1000 | Setting this property changes the maximum number of items Confluence Search will return. |
confluence.upgrade.recovery.file.enabled | ||
5.5 | true | By default, Confluence creates an upgrade recovery file before and after an upgrade. The operation can take a long time on large databases and can be safely turned off if there is a process to back up the database and verify the backup before performing an upgrade. Setting this property to false will disable upgrade recovery file creation. |
confluence.junit.report.directory | ||
5.5 | Setting this property defines the directory on your Confluence server where JUnit Reports can be imported from (for use in the JUnit Report Macro). No other locations are permitted. We recommend administrators create a directory in the Confluence Home directory specifically for this purpose. JUnit Test result files cannot be imported from the server until this system property is set. | |
officeconnector.textextract.word.docxmaxsize | ||
5.5.3 | 16777216 | When a file is uploaded, its text is extracted and indexed. This allows people to search for the content of a file, not just the filename. Confluence will only extract content from a Word document up to the limit set by this property (defaults to 16MB, in bytes), before proceeding to index it. This will mean that only part of the file's contents is searchable. The check uses the uncompressed file size, not the compressed size on disk in the case of .docx files. See Configuring Attachment Size for more info. |
cluster.login.rememberme.enabled | ||
5.6 | False | In a cluster, setting this property to This system property has no effect in standalone Confluence. |
confluence.cluster.hazelcast.listenPort | ||
5.6 | 5801 | In a cluster, this property can be used to override the default port that Hazelcast will bind to, for example, if the port is unavailable, or you need to run more than one node on the same host (not recommended). It defaults to 5801. |
confluence.document.conversion.threads | ||
5.7 | The number of threads allocated to the file conversion service is calculated dynamically based on the amount of memory assigned to the instance and the number of CPU cores (usually 4 to 6 threads). This property can be used to change the number of threads. Decrease threads to resolve OOME issues, increase threads to resolve problems with documents spending too long in the queue. | |
confluence.document.conversion.threads.wait | ||
5.7 | 1000 | Set this property to change the maximum number of items that can be queued for conversion. Any file conversion requests that are made when this maximum limit has been reached are aborted. |
confluence.cluster.node.name | ||
5.7 | Set this property to give each node in your Data Center cluster a human readable name (displayed in email notifications and in the footer). If left unset, Confluence will assign a node identifier to each node. | |
confluence.document.conversion.fontpath | ||
5.8.7 | Set this property to define a directory where you can add additional fonts to be used when rendering files (in previews and thumbnails). This is useful if you need to support previewing files with specific fonts, or fonts with multibtye characters (such as Japanese). | |
confluence.document.conversion.words.defaultfontname | ||
5.8.7 | Set this property to change the default font for rendering Word ( Specify just the name of the font (not the path) . | |
confluence.document.conversion.slides.defaultfontname.regular | ||
5.8.7 | Set this property to change the default font for rendering regular fonts in Powerpoint ( Specify just the name of the font (not the path) . | |
confluence.document.conversion.slides.defaultfontname.asian | ||
5.8.7 | TakaoPGothic | Set this property to change the default font for rendering asian fonts in Powerpoint ( Specify just the name of the font (not the path) . |
confluence.document.conversion.slides.defaultfontname.symbol | ||
5.8.7 | Set this property to change the default font for rendering symbols in Powerpoint ( This is the font that will be used for bullets and other symbols when the font Specify just the name of the font (not the path) . | |
confluence.clickjacking.protection.disable | ||
5.8.15 | false | Security features prevent Confluence from being embedded in an <iframe> . To disable this protection, set this property to true which will allow Confluence to be embedded in an <iframe> . |
confluence.cluster.index.recovery.query.timeout | ||
5.9.1 | 10 | In Confluence Data Center, t he amount of time, in seconds, that a confluence node needing index recovery will wait for another node to offer an index snapshot, before it gives up and stops attempting to recover the index. |
confluence.cluster.index.recovery.generation.timeout | ||
5.9.1 | 120 | In Confluence Data Center, the amount of time, in seconds, that a confluence node needing index recovery will wait for an index snapshot to be created by another node, before it gives up and and stops attempting to recover the index. |
confluence.cluster.index.recovery.num.attempts | ||
5.9.1 | 1 | In Confluence Data Center, the number of times that a node needing index recovery will attempt to recover its index. Set this property to 0 to disable index recovery on that node (for example, when you want to force a node to automatically rebuild its own index on startup). |
com.atlassian.confluence.officeconnector.canary.memory_value | ||
5.9.1 | 1024 | Sets the memory (in megabytes) available to the Office Connector Canary process, which is a workaround for a known issue with the Import from Word option. See JVM crashes during Import from Word in Confluence for more information. |
com.atlassian.confluence.officeconnector.canary.timeout | ||
5.9.1 | 120000 | Sets the maximum timeout (in milliseconds) for the Office Connector Canary process, which is a workaround for a known issue with the Import from Word option. See JVM crashes during Import from Word in Confluence for more information. |
atlassian.plugins.enable.wait | ||
5.9.5 | 300 | Set this property to increase the default time to wait for plugins to start up. This is useful if you have problems with plugins not starting up in time, causing Confluence to fail to start. |
confluence.cluster.hazelcast.max.no.heartbeat.seconds | ||
5.9.7 | 30 | In Confluence Data Center, this sets how long (in seconds) a node can be out of communication with the cluster before it's removed from the cluster. See balancing uptime and data integrity for more info on when you may want to change this setting. |
confluence.startup.remigration.disable | ||
5.10.8 | False | |
cluster.safety.time.to.live.split.ms | ||
6.0.0 | 60000 | In Confluence Data Center, this is the amount of time (in milliseconds) that the cluster safety job will wait to allow the nodes to rejoin after a split brain is detected. If the node still can't find the cluster safety number in the cache after this time, the node will panic. |
confluence.cph.max.entries | ||
6.0.0 | 2000 | This is the maximum number of pages that can be copied when you copy a page and its child pages. Increase this if you need to copy a page with more than the default number of child pages. |
confluence.cph.batch.size | ||
6.0.0 | 10 | This is the number of pages copied in each batch when you copy a page and its children. Increase or reduce this number if you experience problems copying a page with many child pages. |
synchrony.port (formerly known as reza.port) | ||
6.0.0 | 8091 | This is the port that Synchrony, the service that powers collaborative editing, runs on. You should only need to change this if port 8091 is not available. From 6.0.4, Confluence Server will accept either |
synchrony.memory.max (formerly reza.memory.max) | ||
6.0.0 | 2g | This is the maximum heap size (Xmx) allocated to Synchrony, the service that powers collaborative editing. Change this value if you need to increase or decrease the heap size. From 6.0.4, Confluence Server will accept either The default value of this property was increased to 2 gigabytes in 7.10.0. |
synchrony.stack.space | ||
6.0.0 | 2048k | This sets the stack size (Xss) of the Synchrony JVM. Increase if you experience stack overflow errors, or decrease if you experience out of memory errors from Synchrony. This property only applies when Synchrony is managed by Confluence. |
synchrony.enable.xhr.fallback | ||
6.0.0 | True | XML HTTP Request (XHR) fallback allows a user, who cannot connect to Synchrony via a WebSocket, to use the Confluence Editor. From Confluence 6.1 this is enabled by default, and only used when a WebSocket connection is not available. You should not need to disable this, unless directed by our support team. |
synchrony.database.test.connection.on.checkin | ||
6.0.0 | True | Verifies the connection to the database is valid at every connection checkin. Atlassian Support may suggest you set this property to False if you experience performance issues in sites that have very frequent page edits. |
synchrony.proxy.enabled | ||
6.0.0 | True | By default, Confluence uses an internal proxy to communicate between the Confluence JVM and Synchrony JVM. See Administering Collaborative Editing for more information. In Confluence 6.0, set this property to In Confluence 6.1 or later it should not be necessary to use this system property, as Confluence intelligently determines when to use the proxy. This property only applies when Synchrony is managed by Confluence. It has no effect on a Synchrony standalone cluster. |
synchrony.bind (formerly known as reza.bind) | ||
6.0.0 | 0.0.0.0 | This is the specific network interface that Synchrony listens on. It is unlikely that you will need to change this when Synchrony is managed by Confluence. In Confluence Data Center, when running a Synchrony standalone cluster this should be set to the same value as synchrony.cluster.bind . From 6.0.4, Confluence Server will accept either reza.bind or synchrony.bind . |
synchrony.context.path | ||
6.0.0 | /synchrony | This is the context path for Synchrony. There should be no need to change this in Confluence, or when Synchrony is managed by Confluence. |
confluence.pdfexport.permits.size | ||
6.0.0 | (number of cores) | This property sets the number of concurrent PDF exports that can be performed. It defaults to the number of cores on your server or cluster node. |
confluence.pdfexport.timeout.seconds | ||
6.0.0 | 30 | This property sets the amount of time (in seconds) a new PDF export request should wait before failing, if the maximum number of concurrent PDF exports (set in confluence.pdfexport.permits.size) has already been reached. |
confluence.flyingpdf.default.characters.per.line | ||
6.0.3 | 80 | If the total characters in a table column heading exceeds the value of this property, Confluence will automatically adjust the width of the other table columns so that all columns will fit within one page when the page is exported to PDF. |
synchrony.host | ||
6.0.4 | 127.0.0.1 | This is the IP that Confluence uses to connect to Synchrony. It defaults to localhost. Change this if you need to allow Confluence to contact Synchrony via a custom hostname or IP address. This property only applies when Synchrony is managed by Confluence. It has no effect on a Synchrony standalone cluster. |
synchrony.proxy.healthcheck.disabled | ||
6.1.0 | false | The Synchrony proxy health check is used to check whether the Synchrony proxy is running and responding to requests. It requires a http connection. If a http connector is not present in your server.xml (for example you're using a https or AJP connector) the health check will fail even if the Synchrony proxy is operational. You can use this system property to disable the health check if necessary. |
page.index.macro.max.pages | ||
6.1.4 | 1000 | Sets the maximum number of pages that the Page Index macro can display. The Page Index macro can significantly slow down your Confluence instance and cause out of memory errors when used in a space with a large number of pages. If the number of pages in the space exceeds this limit, the Page Index macro will show a page count, and a message that there are too many pages to display. The default value of this property was reduced to 1000 in Confluence 7.11. |
atlassian.indexing.attachment.maxsize | ||
6.2.2 | 104857600 | When a file is uploaded, its text is extracted and indexed. This allows people to search for the content of a file, not just the filename. If the uploaded file is larger than the limit set by this property (default is 100MB, in bytes), text extraction and indexing will be skipped. See Configuring Attachment Size for more info. |
officeconnector.excel.extractor.maxlength | ||
6.2.2 | 1048576 | When a file is uploaded, its text is extracted and indexed. This allows people to search for the content of a file, not just the filename. Confluence will only extract content from an Excel spreadsheet up to the limit set by this property (default is 1MB, in bytes), before proceeding to index it. This will mean that only part of file's contents are searchable. See Configuring Attachment Size for more info. |
atlassian.image_filter.transform.max_data_size | ||
6.2.2 | 16000000 | Applying image effects to large images can cause out of memory errors. We prevent users from applying image effects to images with a data size greater than 16MB. Set this property, in bytes, to reduce the maximum data size. Note: this is the data size, not the size of the file on disk. |
atlassian.image_filter.transform.max.pixel | ||
6.2.2 | 4000 | Applying image effects to large images can cause out of memory errors. We prevent users from applying image effects to images larger than 4000x4000 pixels. Set this property, in pixels, to change the maximum image dimensions. |
confluence.collab.edit.user.limit | ||
6.3.0 | 12 | When collaborative editing is enabled, this sets the maximum number of users that can simultaneously edit a page. Reduce this number if you experience degraded performance when many people are editing. |
jobs.limit.per.purge | ||
6.4.3 | 2000 | The Purge Old Job Run Details scheduled job deletes details of old scheduled jobs from the database in batches. Set this property to change the number of records to remove in each batch. |
all.jobs.ttl.hours | ||
6.4.3 | 2160 | By default, the Purge Old Job Run Details scheduled job deletes details of successful scheduled jobs older than 90 days (or 2160 hours). Set this property, to change number of hours to keep details of successful jobs in the database. |
unsuccessful.jobs.ttl.hours | ||
6.4.3 | 168 | By default, the Purge Old Job Run Details scheduled job deletes details of unsuccessful (failed or aborted) scheduled jobs older than 7 days (or 168 hours). Set this property, to change number of hours to keep details of unsuccessful jobs in the database. |
hide.system.error.details | ||
6.5.0 | False | Set this property to true if you want to hide details on the error screen that appears in the browser when Confluence can't start up. This can be useful for public-facing sites, where you may not want to display details of the problem. |
atlassian.recovery.password | ||
6.6.1 | Allows an administrator to start Confluence in recovery mode and specify a temporary administrator password. This is useful if the administrator is locked out of the instance after a site import, or cannot reset their password by other methods. See Restore Passwords To Recover Admin User Rights for more information. This system property must be removed immediatley after the admin account has been recovered or a new admin account created. | |
confluence.extra.userlister.limit | ||
6.6.3, 6.7.1 | 10000 | Set this property to change the maximum number of people the User List macro can display. This macro is known to cause out of memory errors when attempting to display a very large number of users. |
conversion.sandbox.pool.size | ||
6.10.0 | 2 | Use this property to increase the number of processes (sandboxes) in the external process pool. More processes means more tasks can be executed in parallel, but will consume more memory and CPU resources on each node. This property only applies to Data Center. This property was renamed in Confluence 6.12. |
conversion.sandbox.startup.time.limit.secs | ||
6.10.0 | 30 | When a document file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. In Confluence Data Center this is handled by the external process pool . This property sets the amount of time (in seconds) that a process will wait for document conversion to start, before terminating the process. This property only applies to Data Center. This property was renamed in Confluence 6.12. |
document.conversion.sandbox.request.time.limit.secs | ||
6.10.0 | 30 | When a document file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. In Confluence Data Center this is handled by the external process pool . This property sets the amount of time (in seconds) that a process will wait for document conversion to complete, before terminating the process, and marking thumbnail generation for that file as failed. This property only applies to Data Center. From Confluence 7.8.0 this property also applies to the HTML conversion that occurs when you insert a file using the Office Word or Office Excel macro. |
sandbox.termination.tolerance | ||
6.10.0 | 5 | This property specifies how often a process in the external process pool will check if the request time limit (set in the request.time.limit.secs property above) has been exceeded. It's calculated by dividing the request time limit by the value of this property. For example, if the request time limit is 30 seconds, and the tolerance set in this property is 5, the process will check if the request time limit has been exceeded every 6 seconds. This property only applies to Data Center. |
conversion.sandbox.memory.limit.megabytes | ||
6.10.0 | 512 | When a document file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. In Confluence Data Center this is handled by the external process pool . This property limits the amount of heap memory each process in the external process pool can consume. This property only applies to Data Center. This property was renamed in Confluence 6.12. |
document.conversion.sandbox.log.level | ||
6.10.0 | INFO | Use this property to change the logging level of document conversion in the external process pool to WARNING, INFO, or FINE. This is useful if you need to troubleshoot a problem with the sandbox. This property only applies to Data Center. |
sandbox.error.delay.millis | ||
6.10.0 | 50 | This property sets how often (in milliseconds) document conversion errors are captured for diagnostic purposes. This property only applies to Data Center. |
document.conversion.sandbox.disable | ||
6.10.0 | false | Set this property to true if you don't want to handle document conversion (thumbnail generation) in the external process pool . When disabled, document conversion will be handled in the Confluence JVM, as is the case in Confluence Server. This property only applies to Data Center. |
conversion.sandbox.java.options | ||
6.10.0 | When a document or image file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. In Confluence Data Center this is handled by the external process pool. Use this property to override the default value of any of the following Confluence Server system properties (introduced in 7.0.1), and pass new values directly to the JVMs in the external process pool:
| |
diagnostics.os.check.period.secs | ||
6.11.0 | 120 | Set this property to change how often operating system diagnostics checks should be performed (in seconds). This property only applies to the Low free memory (OS-1001) and Low free disk space (OS-1002) alerts. |
diagnostics.os.min.free.memory.megabytes | ||
6.11.0 | 256 | This property applies to the free memory diagnostic alert (OS-1001). Set this property to change the threshold at which the amount of free memory (in megabytes) should trigger this alert. |
diagnostics.os.min.free.disk.space.megabytes | ||
6.11.0 | 8192 | This property applies to the free disk space diagnostic alert (OS-1002). Set this property to change the threshold at which the amount of free disk space (in megabytes) in the local or shared home directory should trigger this alert. |
diagnostics.slow.http.request.secs | ||
6.11.0 | 60 | This property applies to the HTTP request diagnostic alert (HTTP-1001). This alert is disabled by default. Set this property to change the threshold (in seconds) at which a slow HTTP request should trigger this alert. |
diagnostics.slow.long.running.task.secs | ||
6.11.0 | 300 | This property applies to the long running task diagnostic alert (JOB-1001). Set this property to change the threshold (in seconds) at which a long running task should trigger this alert. |
diagnostics.slow.macro.rendering.secs | ||
6.11.0 | 30 | This property applies to the macro rendering diagnostic alert (MACRO-1001). This alert is disabled by default. Set this property to change the threshold (in seconds) at which rendering a macro on a page should trigger this alert. |
diagnostics.jvm.memory.check.period.secs | ||
6.11.0 | 10 | Set this property to change how often JVM diagnostics checks should be performed (in seconds). This property only applies to the Thread memory allocation rate (JVM-1001) and Garbage collection ( JVM-1002)alerts. |
diagnostics.jvm.memory.allocation.rate.percent | ||
6.11.0 | 5 | This property applies to the thread memory allocation rate diagnostic alert (JVM-1001). This alert is disabled by default. Set this property to change the threshold (as a percentage) at which the memory allocation to a particular thread, during the monitoring period (set in diagnostics.jvm.memory.allocation.monitoring.period.secs), should trigger this alert. |
diagnostics.jvm.memory.allocation.monitoring.period.secs | ||
6.11.0 | 20 | This property applies to the thread memory allocation rate diagnostic alert (JVM-1001). This alert is disabled by default. Set this property to change the monitoring period (in seconds) for this alert. |
diagnostics.jvm.garbage.collector.percent | ||
6.11.0 | 10 | This property applies to the garbage collection diagnostic alert (JVM-1002). This alert checks how much memory has been allocated to garbage collection during the monitoring period (set in diagnostics.jvm.garbage.collector.monitoring.period.secs). Set this property to change the threshold (as a percentage ) at which the memory allocated to garbage collection should trigger this alert. |
diagnostics.jvm.garbage.collector.monitoring.period.secs | ||
6.11.0 | 20 | This property applies to the garbage collection diagnostic alert (JVM-1002). Set this property to change the monitoring period (in seconds) for this alert. |
diagnostics.alert.retention.period.days | ||
6.11.0 | 30 | Set this property to change how often diagnostic alert data should be retained in the database (in days). |
diagnostics.alert.truncation.interval.minutes | ||
6.11.0 | 30 | Set this property to change how often we check for, and remove diagnostic alert data that is older than 30 days (the limit set by diagnostics.alert.retention.period.days) |
pdf.export.sandbox.disable | ||
6.12.0 | false | Set this property to true if you don't want to handle PDF exports in the external process pool. When disabled, PDF exports will be handled in the Confluence JVM, as is the case in Confluence Server. This property only applies to Data Center. |
pdf.export.sandbox.request.time.limit.secs | ||
6.12.0 | 180 | When you export a space to PDF, Confluence exports the content of each page to HTML, converts that HTML to PDF, and then finally merges all the pages together into a single PDF file. In Confluence Data Center this is handled by the external process pool . This property sets the amount of time (in seconds) that a process should wait to complete, before being terminated. This time limit applies both to the time to convert the content from HTML to PDF, and the time to merge the final PDF file. This property only applies to Data Center. |
pdf.export.sandbox.memory.requirement.megabytes | ||
6.12.0 | 64 | In Confluence Data Center PDF exports are handled by the external process pool . This property sets the minimum memory (in megabytes) that a sandbox process must have available to start a PDF export. If conversion.sandbox.memory.limit.megabytes is set to less than the value of this property, PDF export will not start. We don't recommend setting this property to less than 64MB. This property only applies to Data Center. |
synchrony.eviction.soft.job.threshold.hours | ||
7.0.1 | 72 | This property changes the behavior of the Synchrony soft eviction scheduled job. It sets the minimum time, in hours, since a Synchrony change log was last modified, to make it eligible to be cleaned up. By default, only Synchrony change logs last modified more than 3 days ago, for pages/blogs that do not have an active editing session, will be evicted. |
synchrony.eviction.hard.job.threshold.hours | ||
7.0.1 | 360 | This property changes the behavior of the Synchrony hard eviction scheduled job It sets the minimum age, in hours, of content eligible to be evicted by the hard eviction scheduled job. By default, all Synchrony data for any content that is 15 days or older will be evicted by this job, regardless of whether it has been modified more recently. |
confluence.document.conversion.imaging.convert.timeout | ||
7.0.1 | 30 | When a complex image file (such as ICO, EMF, WMF, plus TIF and PSD if enabled) is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. This process is known to cause out of memory errors for large or complex files. This property sets the amount of time (in seconds) that Confluence will wait for conversion to complete for an image file, before terminating the process. This property applies to Confluence Server and Data Center. For Data Center also see Document conversion for Confluence Data Center |
confluence.document.conversion.slides.convert.timeout | ||
7.0.1 | 30 | When a presentation file (such as PPT, PPTX, POT) is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. This process is known to cause out of memory errors for large or complex files. This property sets the amount of time (in seconds) that Confluence will wait for conversion to complete for a presentation file, before terminating the process. This property applies to Confluence Serve and Data Center. For Data Center see Document conversion for Confluence Data Center. |
confluence.document.conversion.imaging.enabled.tif | ||
7.0.1 | false | When a file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. By default thumbnails are not generated for TIFF / TIF as they're known to cause out of memory errors. Set this property to 'true' to turn on thumbnail generation for TIFF files. If enabled, a timeout will apply to this type of file. This is set by the confluence.document.conversion.imaging.convert.timeout system property. This property applies to Confluence Server and Data Center. For Data Center see Document conversion for Confluence Data Center |
confluence.document.conversion.imaging.enabled.psd | ||
7.0.1 | false | When a file is inserted into a page, thumbnails are generated of its contents, so it can be viewed inline and previewed. By default thumbnails are not generated for Photoshop PSD files as they're known to cause out of memory errors. Set this property to 'true' to turn on thumbnail generation for PSD files. If enabled, a timeout will apply to this type of file. This is set by the confluence.document.conversion.imaging.convert.timeout system property. This property applies to Confluence Server and Data Center. For Data Center see Document conversion for Confluence Data Center. |
officeconnector.powerpoint.extractor.maxlength | ||
7.0.1 | 1048576 | When a file is uploaded, its text is extracted and indexed. This allows people to search for the content of a file, not just the filename. Confluence will only extract content from a PowerPoint presentation up to the limit set by this property (default is 1MB, in bytes), before proceeding to index it. This will mean that only part of file's contents are searchable. See Configuring Attachment Size for more info. |
confluence.chart.macro.width.max | ||
7.2.0 | 3000 | Maximum width, in pixels, that a chart macro can be set to display on a page. If a higher value is entered, the chart will automatically be reduced to this default. |
confluence.chart.macro.height.max | ||
7.2.0 | 3000 | Maximum height, in pixels, that a chart macro can be set to display on a page. If a higher value is entered, the chart will automatically be reduced to this default. |
confluence.search.lucene.termFilterBitSetThreshold | ||
7.2.0 | 20 | Set this property to change the behavior of the term filter in Confluence's Lucene based implementation of search. A bitset is only created when the number of matched documents times the threshold set in this property exceeds total number of documents. This will reduce memory usage and improve Confluence performance. You shouldn't need to change this threshold. |
page-tree.partial-loading-batch-size | ||
7.3.0 | 200 | Confluence limits the number of pages that initially display at each level of the page tree. This helps safeguard the performance of your site. Set this property to increase or decrease the number of pages to initially display at each level of the page hierarchy. At least one child page is always displayed, so if you set the value to 10 for example, you may see 11 or 12 pages. |
page-tree.partial-loading.disable | ||
7.3.0 | false | Confluence limits the number of pages that initially display at each level of the page tree. This helps safeguard the performance of your site. Set this property to true if you always want all pages to be displayed by default in the page tree. |
confluence.word.import.maxsize | ||
7.3.3 | 20 | Sets the maximum uncompressed size, in megabtyes, of a Microsoft Word document that can be imported into Confluence using the Import from Word feature. This is to prevent very large files from causing out of memory errors. |
gatekeeper.request-timeout.seconds | ||
7.4.0 | 60 | Some open-ended queries can take a long time to display when you Inspect Permissions in a Confluence Data Center site with a lot of spaces and users. To avoid this having an impact on your site, we have a timeout. Set this property to change the length of the timeout, in seconds. You can't set this lower than 30 seconds, or higher than 900 seconds (15 minutes). |
plugin.audit.log.view.sysadmin.only | ||
7.5.0 | false | Set this property to This property was renamed in 7.7.0. |
plugin.audit.file.max.file.count | ||
7.5.0 | 100 | In Confluence Data Center, audit events are written to an audit log file in the local home directory. These log files are rotated once they reach the file size set by plugin.audit.file.max.file.size. Set this property to change the total number of audit log files to keep in the file system. |
plugin.audit.file.max.file.size | ||
7.5.0 | 100 | In Confluence Data Center, audit events are written to an audit log file in the local home directory. Set this property to change the maximum file size, in megabytes, that a log file can reach before the log is rotated. |
legacy.audit.migrator.num.threads | ||
7.5.0 | Sets the number of threads to be used for migrating existing audit log events to the new audit log format when upgrading to Confluence 7.5 or later. There is no default value. When not set, Confluence will use 2 times the number of processors available. To increase throughput, you can set this property to use a specific number of threads. For example, if you set this property to 16, then 16 threads will be used to migrate the audit log events, regardless of the number of processors available. Note that more threads will result in higher database utilisation. | |
legacy.audit.migrator.batch.size | ||
7.5.0 | 1000 | Sets the number of audit log events to migrate to the new audit log format, when upgrading to Confluence 7.5 or later. This migration can take a long time in large sites. When testing your upgrade, if you find the migration is causing performance issue on your Confluence and/or database server, you can set this property to decrease the number of records processed in each batch. |
NumberItemPerPageOfPaginatedListAction | ||
7.5.0 | 30 | Sets the number of items to be listed on the Undefined Pages and Restricted Pages tabs in Space Tools before Confluence paginates the results. Set this property to change the number of items to display per page. |
CachingEnablingItemNumber | ||
7.5.0 | 1000 | The Undefined Pages tab in Space Tools provides a list undefined links to pages that do not yet exist. As this list can be quite memory intensive to generate, the results are cached. Set this property to change the maximum number of undefined link references to cache. |
confluence.child-macro.page-limit | ||
7.5.0 | (For example, 4) | The Children Display macro may load slowly in spaces with a large number of pages, or complex permissions. Set this property to specify the maximum number of top-level child pages that can be displayed by the macro. Users can still configure the macro to set a lower value for the Number of Children parameter. This property should not be required from Confluence 7.17 if you are using the faster permissions service. |
confluence.child-macro.max-depth | ||
7.5.0 | (For example, 2) | The Children Display macro may load slowly in spaces with a large number of pages, or complex permissions. Set this property to specify the maximum depth of descendants that can be displayed by the macro. Users can still configure the macro to set a lower value for the Depth of Descendants parameter. This property should not be required from Confluence 7.17 if you are using the faster permissions service. |
confluence.child-macro.disable-excerpt | ||
7.5.0 | false | The Children Display macro may load slowly in spaces with a large number of pages, or complex permissions. Set this property to true to never include excerpts. Users can still select a value for the Excerpt Display parameter, but excerpts will not be displayed. This property should not be required from Confluence 7.17 if you are using the faster permissions service. |
CachingEnablingItemTimeout | ||
7.5.0 | 5 | The Undefined Pages tab in Space Tools provides a list undefined links to pages that do not yet exist. As this list can be quite memory intensive to generate, the results are cached. Set this property to change the amount of time, in minutes, the results should be cached (time to live). |
confluence.event.duration_checker.threshold_in_seconds | ||
7.6.2 | 60 | When asynchronous events are generated faster than Confluence can process them, we write a message to the application log to advise that we'll process each task synchronously until the queue is cleared. Set this property to change how often this message appears, in seconds. This property is also available in the 7.4 Long Term Support release from 7.4.4. |
confluence.mailserver.tls.hostname.verification.disabled | ||
7.6.2 | false | Set this property to This property is also available in Long Term Support releases from 6.13.17 and 7.4.5. |
atlassian.image_filter.transform.max.pixel.drop_shadow | ||
7.7.0 | 2000 | Applying a drop shadow image effect to large images can cause out of memory errors. We prevent users from applying a drop shadow to images larger than 2000x2000 pixels, or the value set by atlassian.image_filter.transform.max.pixel (whichever is smallest). Set this property, in pixels, to change the maximum image dimensions for drop shadow. This property is also available in the 7.4 Long Term Support release from 7.4.4. |
pagePropertiesReportContentRetrieverMaxResult | ||
7.7.0 | 3000 | The Page Properties Report macro displays a maximum of 3000 pages. Set this property to decrease the maximum number of pages the macro can display. We don’t recommend you increase this limit, as it can have a performance impact on your site. This property is also available in the 7.4 Long Term Support release from 7.4.6. |
confluence.webhooks.allow.all.hosts | ||
7.7.0 | false | Set this property to true allow administrators to configure localhost URLs as a webhook endpoint. This is disabled by default for security reasons because all ports on the same network can be pinged by the UI. |
plugin.audit.db.limit.rows | ||
7.7.0 | 10000000 | The audit log has a hard limit of 10 million records. This is to avoid performance problems and your database from growing too large. Set this property to decrease or temporarily increase the hard limit. If you need to keep more events, the audit log can also write log events to a file. This property only applies to Data Center. |
audit.log.search.disabled | ||
7.8.0 | false | Set this property to This property only applies to Data Center. |
document.conversion.sandbox.memory.requirement.megabytes | ||
7.8.0 | 128 | When a Word or Excel document file is inserted into a page using the Office Word or Office Excel macro, its contents are converted to a format that can be viewed inline and previewed. In Confluence Data Center this is handled by the external process pool. This property limits the amount of heap memory, in megabytes, this process in the external process pool can consume. This property only applies to Data Center. |
atlassian.pats.enabled | ||
7.9.0 | true | Personal access tokens are used to authenticate REST API requests. By default, any user can create a personal access token. Set this property to |
atlassian.pats.eternal.tokens.enabled | ||
7.9.0 | true | Personal access tokens are used to authenticate REST API requests. Set this property false to prevent users from creating tokens that never expire. |
atlassian.pats.max.tokens.expiry.days | ||
7.9.0 | 365 | Personal access tokens are used to authenticate REST API requests. Set this property, in days, to define the maximum days to until expiry. |
atlassian.pats.max.tokens.per.user | ||
7.9.0 | 10 | Personal access tokens are used to authenticate REST API requests. Set this property to limit the number of tokens an individual user can create. |
atlassian.allow.insecure.url.parameter.login | ||
7.10.0 | False | Set this property to This login method is blocked by default, and we strongly recommend you use a more secure method, such as personal access tokens. |
com.atlassian.confluence.extra.calendar3.concurrent.task.max | ||
7.11.0 | 20 | The max number of worker threads used by Team Calendars. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.greenhopper.sprint.enabled | ||
7.11.0 | true | If set to false integrating calendars with Jira sprints is disabled. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.jira.timeout.socket | ||
7.11.0 | 10000 | Timeout in milliseconds for calendars to connect to Jira. Increasing this may help if you experience timeouts on Jira calendars. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.jira.issues.max | ||
7.11.0 | 1000 | The maximum number of events that will be loaded from a Jira calendar. Increasing this may cause performance issues. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.display.events.dashboard.maxperday | ||
7.11.0 | 10 | The maximum number of calendar events that will be shown per day on the upcoming events view on the Confluence dashboard. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.display.events.calendar.maxpercalendar | ||
7.11.0 | 200 | The maximum number of events that can be displayed from a single calendar. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.display.events.calendar.maxperdaysummary | ||
7.11.0 | 3 | The maximum number of events that will be shown per day in the summary email. |
com.atlassian.confluence.extra.calendar3.display.events.calendar.maxdailysummary | ||
7.11.0 | 4 | The maximum number of calendar events that will be shown in total in the daily summary email. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.display.events.calendar.maxweeklysummary | ||
7.11.0 | 8 | The maximum number of calendar events that will be shown in total in the weekly summary email. This property only applies to Data Center. |
com.atlassian.confluence.extra.calendar3.display.timeline.calendar.maxmonth | ||
7.11.0 | 6 | The maximum number of months that will be shown in the timeline view of a calendar. This property only applies to Data Center. |
plugin.data.pipeline.embedded.line.break.preserve | ||
7.12.0 | false | Specifies whether embedded line breaks should be preserved in the output files. Line breaks can be problematic for some tools such as Hadoop. This property is set to |
plugin.data.pipeline.embedded.line.break.escape.char | ||
7.12.0 | \\n | Escaping character for embedded line breaks. By default, we'll print \n for every embedded line break. |
reindex.attachments.freeMbPerThread | ||
7.14.0 | 500 | Confluence calculates the number of threads to be used when reindexing attachments based on either the number of available CPUs or free memory, whichever is lower. See Set this property to change the amount of free memory per thread (in megabytes) used in this calculation. Reducing this value may result in more threads being used during reindexing, which allows for greater concurrency. |
atlassian.oauth2.provider.enable.access.tokens | ||
7.17.0 | true | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to disable the ability to authenticate using access tokens on that node. |
atlassian.oauth2.provider.skip.base.url.https.requirement | ||
7.17.0 | false | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to disable the HTTPS requirement for the base URL. When disabled, the OAuth 2.0 provider will be enabled even if the product is using HTTP. |
atlassian.oauth2.provider.skip.redirect.url.https.requirement | ||
7.17.0 | false | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to disable the HTTPS requirement for the Redirect URL. When disabled, the OAuth 2.0 provider will allow Redirect URLs using HTTP. |
atlassian.oauth2.provider.max.lock.timeout.seconds | ||
7.17.0 | 10 | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change the amount of time, in seconds, a request will await lock access before timing out. |
atlassian.oauth2.provider.max.client.delay.seconds | ||
7.17.0 | 10 | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change the maximum lifetime of authorization codes, in seconds. The limit is 600 seconds. |
atlassian.oauth2.provider.prune.expired.authorizations.schedule | ||
7.17.0 | * * * * * ? | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change the cron expression for the job that removes expired authorization codes. Default is 1 minute. |
atlassian.oauth2.provider.access.token.expiration.seconds | ||
7.17.0 | 3600 (1 hour) | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change the maximum lifetime of access tokens, in seconds. |
atlassian.oauth2.provider.prune.expired.tokens.schedule | ||
7.17.0 | * * * * * ? | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change the cron expression for the job that removes expired access tokens. Default is 1 minute. |
atlassian.oauth2.provider.access.token.expiration.seconds | ||
7.17.0 | 7776000 | This property changes the OAuth 2.0 behaviour when linking to another application. Set this property to change the maximum lifetime of refresh tokens, in seconds. Default is 90 days (in seconds). |
atlassian.oauth2.provider.invalidate.session.enabled | ||
7.17.0 | true | This property changes the OAuth 2.0 behaviour when linking to another application. Set this property to change whether to invalidate a session after a successful authentication using an OAuth token. |
atlassian.oauth2.provider.validate.client.secret | ||
7.17.0 | true | This property changes the OAuth 2.0 behaviour when linking to another application. Set this property to change whether to validate the client ID and client secret when revoking and creating tokens. |
atlassian.oauth2.provider.use.quotes.in.sql | ||
7.17.0 | false | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change whether to add quotes to SQL statements. This is a sanity system property used for database requirements. PostgreSQL will always use quotes unless the do.not.use.quotes.in.sql property (below) is enabled. |
atlassian.oauth2.provider.do.not.use.quotes.in.sql | ||
7.17.0 | false | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change whether to add quotes to SQL statements. This is a sanity system property used for database requirements. |
atlassian.oauth2.provider.token.via.basic.authentication | ||
7.17.0 | true | This property changes the OAuth 2.0 behavior when linking to another application. Set this property to change whether to extract tokens through the basic authentication password field for access token authentication. |
jdbc.password.decrypter.classname | ||
7.17.0 | true | This property should be used when configuring an encrypted JDBC password in |
confluence.plugins.collab.feedback.destination.folder | ||
7.20.0 | <shared-home>/collab-data | Feedback reports are used to troubleshoot collaborative editing problems. Set this property to change where collaborative editing feedback reports should be saved. For non-clustered installations, the default location will be <local-home>/shared-home/collab-data. |
confluence.plugins.collab.feedback.files.max | ||
7.20.0 | 200 | Feedback reports are used to troubleshoot collaborative editing problems. Set this property to limit the number of collaborative editing feedback reports to store. |
confluence.plugins.collab.feedback.operation.timeout.sec | ||
7.20.0 | 20 | Feedback reports are used to troubleshoot collaborative editing problems. Set this property, in seconds, to change the operation timeout when creating a feedback report. |
confluence.plugins.collab.feedback.concurrent.max | ||
7.20.0 | 5 | Feedback reports are used to troubleshoot collaborative editing problems. Set this property to change the maximum number of reports that can be generated concurrently. |
confluence.plugins.collab.feedback.cleanup.threshold.hours | ||
7.20.0 | 120 | Feedback reports are used to troubleshoot collaborative editing problems. Set this property, in hours, to change the length of time to retain reports. A scheduled job will delete any reports exceeding this limit, starting with the oldest. |
confluence.temp-files.ttl-in-hours | ||
7.20.0 | 24 | This property changes the TTL(time-to-live in hours) of sub directories and files under the temp directory. Sub directories and files whose last modification time are earlier than this value will be cleaned during the scheduled temp directory job. |
space.trash.content.pagination.size.max | ||
8.0.0 | 500 | This is the maximum number of trashed items that can be viewed per page when you paginate the trash can for a space. Increase this if you need to increase trash page maximum size with more than the default 500 items per page. |
synchrony.cluster.multicast.port | ||
8.0.0 | 54328 | In a cluster, this property can be used to override the default port that synchrony multicast will listen to. It defaults to 54328. |
confluence.filestore.attachments.s3.bucket.name | ||
8.1.0 | This property is related to configuring S3 object storage. By setting this property and
| |
confluence.filestore.attachments.s3.bucket.region | ||
8.1.0 | This property is related to configuring S3 object storage. By setting this property and
| |
synchrony.service.authtoken | ||
8.1.0 | autogenerated string 32 characters long | This Confluence token is used to access Synchrony Handshaking REST API. This property is also available in Long Term Support releases from 7.13.14 and 7.19.6. It has also been backported to 8.0.1 and later. |
http.header.security.disabled | ||
8.1.1 | false | Setting this property will disable Tomcat’s Disabling this filter will disable HSTS. |
http.header.security.hsts.max.age | ||
8.1.1 | 31536000 | If HSTS is enabled, this will set the max-age in seconds for the header. |
http.header.security.hsts.preload.enabled | ||
8.1.1 | false | If HSTS is enabled, this will enable HSTS pre-loading. |
http.header.security.hsts.include.subdomains | ||
8.1.1 | false | If HSTS is enabled, this will enable HSTS for all subdomains. |
macro.required.velocity.context.keys | ||
8.2.0 | generalUtil,htmlUtil | A comma-separated list of Velocity context items or variables to be available for use in User macros. This list can be a subset of the items available in the default Velocity context. This property is also available in Long Term Support releases 7.13.15 and 7.19.7. |
com.ctc.wstx.inputBufferLength | ||
8.3.0 | 64000 | This property is the size of input buffer (in chars) to use for reading XML content from the Woodstox input stream/reader. The Woodstox input reader is used as part of the process that marshals and unmarshals editor pages as XHTML. Previously, the limited buffer caused issues with macros containing large Javascript elements, which caused the contents to be broken into multiple CDATA sections. |
confluence.clusterEvent.timeout | ||
8.3.0 | 10 (seconds) | This property defines the amount of time (in seconds) that a cluster node that publishes a cluster event will wait for the other nodes to acknowledge that they’ve forwarded the event. This is the same timeout that the old mechanism uses, but there the timeout wasn’t configurable like it is now. |
confluence.show.setup.restore | ||
8.3.0 | false | Setting this property to 'true' will display the option to restore from backup in the Confluence setup wizard. Since Confluence 8.3, we've changed the way we do backup and restore. We don't recommend this legacy option for restoring content to a new site because it contains issues resolved by the new system. |
confluence.backuprestore.backup.ttl-in-hours | ||
8.3.0 | 72 (hours) | This property sets how long we keep XML backups in the restore directory before deleting them. Ensure this value is less than For example, if this value is set to greater than 14 days (336 hours), the XML backup will be deleted when the scheduled job 'Backup Restore v2 trigger job clean up' runs at 14 days by default. This property relates to the scheduled job, 'Backup Restore v2 temporary backup zip cleaner'. |
confluence.backuprestore.jobs.ttl-in-days | ||
8.4.0 | 14 (days) | This property sets the amount of time before we delete backup and restore jobs (metadata and files) from the database. We count the number of days since the job has finished, not when it was created. Ensure this value is greater than |
confluence.pdfexport.allow.local.hosts | ||
8.4.0 | false | This property affects space and site PDF layouts and PDF stylesheets. Setting the property as true means that Confluence will accept a localhost URL. For example, these URLs would be accepted if the property is set to true:
This property is also available in Long Term Support releases from 7.13.18 and 7.19.10. |
emoticon.thumbnail.generator.permits.size | ||
8.4.0 | the maximum number of processors available to the virtual machine; never smaller than one | This property sets the number of emoji resizes that are allowed to be processed concurrently. For example, if this value is 1 and 10 people upload emojis at the same time that need resizing, they will wait longer. If the value is set at 10, all requests will be processed and served immediately. |
confluence.emoticons.max.file.size | ||
8.4.0 | 1 (MB) | This property controls the maximum file size for upload as an emoji. We only accept JPG, PNG, and GIF files. |
com.atlassian.confluence.plugins.emoticons.max.allowed.uploads | ||
8.4.0 | 2000 | This property controls the maximum number of emojis that are allowed to be uploaded to a Confluence site. |
applinks.allow.all.hosts | ||
8.4.0 | false | This property blocks local IPs and network link IPs (including AWS magic IP) during new app link creation. This helps prevent SSRF attacks on the local server. If you don't need to block local IPs and network link IPs, then set the property to This property is also available in Long Term Support releases from 7.13.19 and 7.19.11. |
multipart.unauthorised.allowed.patterns | ||
8.7.1 | Use this property to specify any endpoints that need to parse multipart requests outside of the access criteria in | |
ratelimiter.cache.expiry.duration.minutes | ||
8.7.1 | 60 | This property sets the rate limiter cache to expire after a certain amount of time (in minutes). This property has been backported to 7.19.17 and 8.5.4 Long Term Support releases. |
ratelimiter.forgetuserpass.permits.persecond.global | ||
8.7.1 | 0.0000116 | This value represents the request per second allowed for reset user password by any user. The default value is set to 0.0000116 of 1 request in a second. This value will be equivalent to 1 request in 24hrs. This property has been backported to 7.19.17 and 8.5.4 Long Term Support releases. |
ratelimiter.sitesupport.permits.persecond | ||
8.7.1 | 0.0005 | This value represents the submit request per second allowed to for Contact Site Admin by any authenticated user. This property has been backported to 7.19.17 and 8.5.4 Long Term Support releases. |
ratelimiter.sitesupport.permits.persecond.global | ||
8.7.1 | 1 | This value represents the submit requests per second allowed for Contact Site Admin by any anonymous user. This property has been backported to 7.19.17 and 8.5.4 Long Term Support releases. |
com.sun.jndi.ldap.connect.pool.initsize | ||
8.7.1 | 1 | The number of JNDI LDAP connections created when initially connecting to the pool. |
com.sun.jndi.ldap.connect.pool.prefsize | ||
8.7.1 | 10 | The optimal pool size. JNDI LDAP will remove idle connections when the number of connections grows larger than this value. A value of 0 (zero) means that there is no preferred size, so the number of idle connections is unlimited. |
com.sun.jndi.ldap.connect.pool.maxsize | ||
8.7.1 | 0 | The max number of JNDI LDAP connections. When the number of connections reaches this value, JNDI LDAP will refuse further connections. As a result, requests made by an application to the LDAP server will be blocked. A value of 0 (zero) means that the number of connections is unlimited. |
com.sun.jndi.ldap.connect.pool.timeout | ||
8.7.1 | 300 | The length of time, in seconds, that a connection may remain idle before being removed from the pool. When the application is finished with a pooled connection, the connection is marked as idle, waiting to be reused. A value of 0 (zero) means that the idle time is unlimited, so connections will never be timed out. |
com.sun.jndi.ldap.connect.pool.protocol | ||
8.7.1 | plain SSL (both plain and SSL) | Only these protocol types are allowed to connect to LDAP. If you want to allow multiple protocols, enter the values separated by a space. Valid values are:
|
com.sun.jndi.ldap.connect.pool.authentication | ||
8.7.1 | simple | Only these authentication types are allowed to connect to JNDI LDAP. If you want to allow multiple authentication types, enter the values separated by a space. See RFC 2829 for details of LDAP authentication methods. Valid values are:
|
com.ctc.wstx.maxAttributeSize | ||
8.7.1 | 524,288 | This property is the maximum length of individual attribute values (in chars) to use for reading XML content from the Woodstox input stream/reader. Increase the property accordingly when exporting an XML diagram with a size over 512K chars, for example, a large Draw.IO diagram to Word. The property can be up to Integer.MAX_VALUE (2,147,483,647). |
net.request.allow.all.hosts | ||
8.7.1 | false | This property controls whether If the IP access is blocked and needs to be accessed by a plugin, then you need to add the IP/URL in the AllowList. See Configuring the allowlist
|
multipart.authenticated.max.param.length | ||
8.8.0 | 100,000 | This property sets the maximum size in bytes for multipart request form parameters for authenticated requests only. (The limit for unauthenticated requests, i.e. the global limit, is changed using This property has been backported to 8.5.5 Long Term Support Release and 8.7.2. |
multipart.authenticated.max.parts | ||
8.8.0 | 10,000 | This property sets the maximum parts in a multipart request for authenticated requests only. (The limit for unauthenticated requests, i.e. the global limit, is changed using This property has been backported to 8.5.5 Long Term Support Release and 8.7.2. |
upm.plugin.upload.enabled | ||
8.8.0 | false | When set to For higher security, leave this set to |
cluster-monitoring.redirect.max.length | ||
8.9.0 | 2048 | This property sets the maximum allowed length for the URL that’s generated for redirection post login. This is for protection from arbitrarily large URLs. This property has been backported to Long Term Support releases from 7.19.20, 8.5.6 and 8.8.1. |
search.platform | ||
8.9.0 |
| Sets the search platform to either Lucene or OpenSearch. |
opensearch.http.url | ||
8.9.0 | - | Sets the URL of the OpenSearch instance, or multiple URLs separated by commas. Note: when using IAM credentials, it always uses HTTPS. Any |
opensearch.aws.region | ||
8.9.0 | - | Stores the region of the AWS instance (for example, |
opensearch.username | ||
8.9.0 | - | Sets the username, if using basic authentication. If using IAM credentials, use |
opensearch.password | ||
8.9.0 | - | Sets the password, if using basic authentication. If using IAM credentials, use |
opensearch.http.connect.timeout | ||
8.9.0 | 5 | Sets the timeout (in seconds) for connecting to an OpenSearch instance. |
opensearch.http.request.connect.timeout | ||
8.9.0 | 5 | Set the timeout (in seconds) for a request to receive a response. |
opensearch.http.socket.timeout | ||
8.9.0 | 5 | Sets the socket timeout value (in seconds) for I/O operations on the OpenSearch HTTP client. The default value was raised to 10,000 milliseconds in Confluence 9.1. |
opensearch.index.content.name | ||
8.9.0 | confluence-content | Sets the name of the content index. |
opensearch.index.change.name | ||
8.9.0 | confluence-change | Sets the name of the change index. |
opensearch.index.journal.name | ||
8.9.0 | confluence-journal | Sets the name of the journal index. |
opensearch.index.custom.prefix | ||
8.9.0 | confluence-custom- | Sets the prefix for custom indexes. |
opensearch.bulk.api.batch.size | ||
8.9.0 | 5242880 (i.e. 5MB) | Sets the batch request size (in bytes) at which the bulk index writer flushes. |
opensearch.http.max.connection.total | ||
8.9.0 | 30 | Sets the total number of allowed connections for an OpenSearch client. |
opensearch.http.max.connection.per.route | ||
8.9.0 | 10 | Sets the total number of allowed connections per route for an OpenSearch client. |
opensearch.max.search.results | ||
8.9.0 | 10,000 | The search limit is capped to this value. This prevents breaking existing plugins that currently omit pagination by passing large search limits (e.g. |
http.header.security.content.security.policy.disabled | ||
8.9.0 | false | Determines whether the response header, This property has been backported to 8.5.7 Long Term Support release and 8.8.1. |
http.header.security.content.security.policy.value | ||
8.9.0 | See description | Determines the value used when setting the response header, When enabled, its contents override the contents of This property was released in 8.9.0 and backported to 8.8.1 and 8.5.7 Long Term Support release (when it had a default value of |
confluence.security.allowed.urls | ||
8.9.1 | - | Adds your comma-separated list of URLs to the list of allowed domains to be included in the response header, If no value is set for this property, your If a value is set in for property, your If This property has been backported to 8.5.9 Long Term Support release, and 8.9.1. |