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>
This commit is contained in:
Dan Roscigno 2021-02-24 05:53:17 -05:00 committed by GitHub
parent 7bf590a219
commit f0e4e360a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,9 +73,9 @@ $ bin/elasticsearch-certutil cert --ca ./my-ca.p12 --out ./my-keystore.p12 --pas
es_enable_http_ssl: true es_enable_http_ssl: true
es_enable_transport_ssl: true es_enable_transport_ssl: true
es_ssl_keystore: "files/certs/my-keystore.p12" 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_keystore_password: "keystore_password"
es_ssl_truststore_password: "truststore_password" es_ssl_truststore_password: "ca_password"
es_validate_certs: no es_validate_certs: no
``` ```