[DOCS] Fix wrapped lines in code blocks of TLS getting started guide

Relates elastic/x-pack-elasticsearch#2970

Original commit: elastic/x-pack-elasticsearch@a279e57270
This commit is contained in:
Dimitrios Liappis 2017-11-13 20:00:35 +02:00 committed by GitHub
parent 92f87cab14
commit 00ccac9203
1 changed files with 2 additions and 7 deletions

View File

@ -170,8 +170,7 @@ docker-compose up -d
--
["source","sh"]
----
curl --cacert certs/ca/ca.crt -u elastic:PleaseChangeMe
https://localhost:9200
curl --cacert certs/ca/ca.crt -u elastic:PleaseChangeMe https://localhost:9200
----
// NOTCONSOLE
--
@ -181,10 +180,6 @@ all users:
--
["source","sh"]
----
docker exec es01 /bin/bash -c "bin/x-pack/setup-passwords auto --batch
-Expack.ssl.certificate=x-pack/certificates/es01/es01.crt
-Expack.ssl.certificate_authorities=x-pack/certificates/ca/ca.crt
-Expack.ssl.key=x-pack/certificates/es01/es01.key
--url https://localhost:9200"
docker exec es01 /bin/bash -c "bin/x-pack/setup-passwords auto --batch -Expack.ssl.certificate=x-pack/certificates/es01/es01.crt -Expack.ssl.certificate_authorities=x-pack/certificates/ca/ca.crt -Expack.ssl.key=x-pack/certificates/es01/es01.key --url https://localhost:9200"
----
--