From f0e4e360a2ceabc6e5bb0b9f73a808655bc875ea Mon Sep 17 00:00:00 2001 From: Dan Roscigno Date: Wed, 24 Feb 2021 05:53:17 -0500 Subject: [PATCH] Update ssl-tls-setup.md (#777) When generating the CA the filename is `my-ca.p12`, so I changed the name from `my-truststore.p12` to `my-ca.p12` Co-authored-by: Julien Mailleret <8582351+jmlrt@users.noreply.github.com> --- docs/ssl-tls-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ssl-tls-setup.md b/docs/ssl-tls-setup.md index b948e8e..4eec761 100644 --- a/docs/ssl-tls-setup.md +++ b/docs/ssl-tls-setup.md @@ -73,9 +73,9 @@ $ bin/elasticsearch-certutil cert --ca ./my-ca.p12 --out ./my-keystore.p12 --pas es_enable_http_ssl: true es_enable_transport_ssl: true es_ssl_keystore: "files/certs/my-keystore.p12" - es_ssl_truststore: "files/certs/my-truststore.p12" + es_ssl_truststore: "files/certs/my-ca.p12" es_ssl_keystore_password: "keystore_password" - es_ssl_truststore_password: "truststore_password" + es_ssl_truststore_password: "ca_password" es_validate_certs: no ```