From 2df81a970b860e8f57e28ccb503facda0dbaa7a1 Mon Sep 17 00:00:00 2001 From: MegaXLR <8215278+megaxlr@users.noreply.github.com> Date: Fri, 19 Apr 2019 14:15:44 +0200 Subject: [PATCH] LetsEncrypt has a http challenge that runs http and https. --- docs/content/config/security/ssl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/config/security/ssl.md b/docs/content/config/security/ssl.md index 3447e47d..9a53fb40 100644 --- a/docs/content/config/security/ssl.md +++ b/docs/content/config/security/ssl.md @@ -35,7 +35,7 @@ You can now mount /home/ubuntu/docker/letsencrypt/etc/ in /etc/letsencrypt of `` To renew your certificate just run (this will need access to port 443 from the internet, adjust your firewall if needed) ``` -docker run --rm -ti -v $PWD/log/:/var/log/letsencrypt/ -v $PWD/etc/:/etc/letsencrypt/ -p 443:443 deliverous/certbot renew +docker run --rm -ti -v $PWD/log/:/var/log/letsencrypt/ -v $PWD/etc/:/etc/letsencrypt/ -p 80:80 -p 443:443 deliverous/certbot renew ``` #### Example using docker, nginx-proxy and letsencrypt-nginx-proxy-companion ####