From 6f568e284e00e68f96966c3a834b6babe710ee60 Mon Sep 17 00:00:00 2001 From: Alexey Miasoedov Date: Thu, 2 Dec 2021 14:44:31 +0300 Subject: [PATCH] default_remote should contain scheme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 44148be..37b781a 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ An example `certmgr.yaml` file is: ``` dir: /etc/certmgr.d -default_remote: ca.example.net:8888 +default_remote: https://ca.example.net:8888 svcmgr: systemd before: 72h interval: 30m @@ -130,7 +130,7 @@ An example spec that writes both a CA and certificate key pair defined in JSON: "group": "www-data" }, "authority": { - "remote": "ca.example.net:8888", + "remote": "https://ca.example.net:8888", "auth_key": "012345678012345678", "label": "www_ca", "profile": "three-month", @@ -145,7 +145,7 @@ And this is an example that writes just the CA to disk: "service": "nginx", "action": "restart", "authority": { - "remote": "ca.example.net:8888", + "remote": "https://ca.example.net:8888", "auth_key": "012345678012345678", "label": "www_ca", "profile": "three-month",