From d987ba8883345441709e38242a79b7e56fdbcecf Mon Sep 17 00:00:00 2001 From: yxie2023 <122173290+yxie2023@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:44:31 -0500 Subject: [PATCH] Update default.conf ipv6 support is automatically added via nginx docker's 10-listen-on-ipv6-by-default.sh. This patch allows element-web to run on system with or without ipv6 enabled. --- nginx/conf.d/default.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/nginx/conf.d/default.conf b/nginx/conf.d/default.conf index 0ae57903744..9920128e8d4 100644 --- a/nginx/conf.d/default.conf +++ b/nginx/conf.d/default.conf @@ -1,6 +1,5 @@ server { listen 80; - listen [::]:80; server_name localhost; root /usr/share/nginx/html;