From 38ebb6b47541127f62bbb271a281c9495f3fe020 Mon Sep 17 00:00:00 2001 From: Robert Krambovitis Date: Thu, 19 May 2016 18:04:52 +0300 Subject: [PATCH] doc: fix https omission in documentation. doc: added missing (http)s to tls setup guide This fixes a minor documentation omission, where the 1st initial-advertise-peer-url for tls setup appears to be http. fixes documentation --- Documentation/op-guide/clustering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/op-guide/clustering.md b/Documentation/op-guide/clustering.md index 1321b29b2..1c59d9a02 100644 --- a/Documentation/op-guide/clustering.md +++ b/Documentation/op-guide/clustering.md @@ -129,7 +129,7 @@ If the cluster needs encrypted communication but does not require authenticated On each machine, etcd would be started with these flag: ``` -$ etcd --name infra0 --initial-advertise-peer-urls http://10.0.1.10:2380 \ +$ etcd --name infra0 --initial-advertise-peer-urls https://10.0.1.10:2380 \ --listen-peer-urls https://10.0.1.10:2380 \ --listen-client-urls https://10.0.1.10:2379,https://127.0.0.1:2379 \ --advertise-client-urls https://10.0.1.10:2379 \