From 5b33e16517b112603205b2854cd6109262a4b6c1 Mon Sep 17 00:00:00 2001 From: Eric Burel Date: Thu, 18 Oct 2018 10:24:38 +0200 Subject: [PATCH] Update SSL Doc It was still a bit unclear that `letsEncryptEmail` is totally arbitrary, I added a comment. Also, I had to stop the app with `mup stop` to make `mup setup` work. Otherwise I had this error on `mup setup`: ``` Error response from daemon: endpoint mup-nginx-proxy not found Error: No such container: mup-nginx-proxy-letsencrypt ``` Is this normal? --- docs/docs.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs.md b/docs/docs.md index 674c5f47..fc3a90ef 100644 --- a/docs/docs.md +++ b/docs/docs.md @@ -539,7 +539,8 @@ module.exports = { // Enable let's encrypt to create free certificates. // The email is used by Let's Encrypt to notify you when the // certificates are close to expiring. - letsEncryptEmail: 'email@domain.com' + // You can choose it arbitrarily + letsEncryptEmail: 'your@email.com' } } };