From 479a1081728a6afff1b6acd7fe4f883dd7439aaf Mon Sep 17 00:00:00 2001 From: Dominique Roux Date: Mon, 11 Feb 2019 16:30:04 +0100 Subject: [PATCH] Added IPv6 Support for the docker container - Enabled IPv6 for the nginx server --- src/nginx_conf.d/certbot.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nginx_conf.d/certbot.conf b/src/nginx_conf.d/certbot.conf index 64007e1..80d06bc 100644 --- a/src/nginx_conf.d/certbot.conf +++ b/src/nginx_conf.d/certbot.conf @@ -1,6 +1,7 @@ server { # Listen on plain old HTTP listen 80 default_server; + listen [::]:80 default_server; # Pass this particular URL off to certbot, to authenticate HTTPS certificates location '/.well-known/acme-challenge' {