From e8f2c39f799007b44e03f23c8ae4169a9ebae10f Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 29 Apr 2020 15:29:14 +0000 Subject: [PATCH] update altnames example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a989040..9e62e61 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ module.exports = app; ```bash # Note: you can use the CLI to edit the config file -npx greenlock add --subject example.com --altnames example.com +npx greenlock add --subject example.com --altnames example.com,www.example.com ``` `greenlock.d/config.json`: @@ -169,7 +169,7 @@ npx greenlock add --subject example.com --altnames example.com ```json -{ "sites": [{ "subject": "example.com", "altnames": ["example.com"] }] } +{ "sites": [{ "subject": "example.com", "altnames": ["example.com,www.example.com"] }] } ``` ### 4. Hello, Encrypted World!