You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/modules/indices/index_management.asciidoc
+98-7Lines changed: 98 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,6 @@ cannot close open indices. Defaults to `true`.
27
27
+
28
28
NOTE: Closed indices still consume a significant amount of disk space.
29
29
30
-
[[reindex-remote-whitelist]]
31
-
// tag::reindex-remote-whitelist[]
32
-
`reindex.remote.whitelist` {ess-icon}::
33
-
(<<static-cluster-setting,Static>>)
34
-
Specifies the hosts that can be <<reindex-from-remote,reindexed from remotely>>. Expects a YAML array of `host:port` strings. Consists of a comma-delimited list of `host:port` entries. Defaults to `["\*.io:*", "\*.com:*"]`.
35
-
// end::reindex-remote-whitelist[]
36
-
37
30
[[stack-templates-enabled]]
38
31
`stack.templates.enabled`::
39
32
+
@@ -52,3 +45,101 @@ This setting also affects the following built-in component templates:
Specifies the hosts that can be <<reindex-from-remote,reindexed from remotely>>. Expects a YAML array of `host:port` strings. Consists of a comma-delimited list of `host:port` entries. Defaults to `["\*.io:*", "\*.com:*"]`.
59
+
// end::reindex-remote-whitelist[]
60
+
61
+
`reindex.ssl.certificate`::
62
+
Specifies the path to the PEM encoded certificate (or certificate chain) to be
63
+
used for HTTP client authentication (if required by the remote cluster)
64
+
This setting requires that `reindex.ssl.key` also be set.
65
+
You cannot specify both `reindex.ssl.certificate` and `reindex.ssl.keystore.path`.
66
+
67
+
`reindex.ssl.certificate_authorities`::
68
+
List of paths to PEM encoded certificate files that should be trusted.
69
+
You cannot specify both `reindex.ssl.certificate_authorities` and
70
+
`reindex.ssl.truststore.path`.
71
+
72
+
`reindex.ssl.key`::
73
+
Specifies the path to the PEM encoded private key associated with the
74
+
certificate used for client authentication (`reindex.ssl.certificate`).
75
+
You cannot specify both `reindex.ssl.key` and `reindex.ssl.keystore.path`.
76
+
77
+
`reindex.ssl.key_passphrase`::
78
+
Specifies the passphrase to decrypt the PEM encoded private key
0 commit comments