From 9f599e9133dd1f85636c15d3782810d90ab85079 Mon Sep 17 00:00:00 2001 From: Dennis Glindhart Date: Sun, 9 Jun 2019 18:01:32 +0200 Subject: [PATCH] Listen on IPv6 interface Usable in IPv6-only environments --- conf/nginx-site.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx-site.conf b/conf/nginx-site.conf index 273ad88d..08971839 100644 --- a/conf/nginx-site.conf +++ b/conf/nginx-site.conf @@ -1,5 +1,6 @@ server { listen 8000 default; ## Listen for ipv4; this line is default and implied + listen [::]:8000 default; ## Listen for ipv6 # Make site accessible from http://localhost/ server_name localhost;