From 31d6128a2b9ab1ac7d9f8250919b323e59a7d416 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Fri, 28 Nov 2014 14:40:02 +0000 Subject: [PATCH] nginx: explicitly listen on both ipv4 and ipv6 (works even if ipv6 isn't present) --- conf/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 241bcebe..030a706d 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -13,6 +13,7 @@ server { # The secure HTTPS server. server { listen 443 ssl; + listen [::]:443 ssl; server_name $HOSTNAME;