From 3a6870f0dc3ae5785e0e4014073ba764dee32ab7 Mon Sep 17 00:00:00 2001 From: Lisa Cawley Date: Tue, 24 Oct 2017 16:29:19 +0100 Subject: [PATCH] [DOCS] Added SSL settings to X-Pack installation (elastic/x-pack-elasticsearch#2733) Original commit: elastic/x-pack-elasticsearch@c88cce763a5ca71491cf7a554dc949f6b0f3f81e --- docs/en/installing-xes.asciidoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/en/installing-xes.asciidoc b/docs/en/installing-xes.asciidoc index 5436ac01b87..643c98454cb 100644 --- a/docs/en/installing-xes.asciidoc +++ b/docs/en/installing-xes.asciidoc @@ -180,12 +180,16 @@ directory. For example, xpack.ssl.key: certs/${node.name}/${node.name}.key <1> xpack.ssl.certificate: certs/${node.name}/${node.name}.crt <2> xpack.ssl.certificate_authorities: certs/ca/ca.crt <3> +xpack.security.transport.ssl.enabled: true +xpack.security.http.ssl.enabled: true <4> ----------------------------------------------------------- <1> If this path does not exist on every node or the file name does not match the `node.name` configuration setting, you must specify the full path to the node key file. <2> Alternatively, specify the full path to the node certificate. <3> Alternatively specify the full path to the CA certificate. +<4> This setting is optional. It enables SSL on the HTTP layer to ensure that +communication between HTTP clients and the cluster is encrypted. -- .. Start {es}.