From 062f19df3c227441e72ea548fcce294ebbf2211a Mon Sep 17 00:00:00 2001 From: Lorenzo Milesi Date: Fri, 16 Apr 2021 08:34:14 +0200 Subject: [PATCH] Fixes #3371 - Listen to both IPv4 and IPv6 --- contrib/nginx/zammad.conf | 1 + contrib/nginx/zammad_ssl.conf | 2 ++ 2 files changed, 3 insertions(+) diff --git a/contrib/nginx/zammad.conf b/contrib/nginx/zammad.conf index 8b652773f..14a8d3903 100644 --- a/contrib/nginx/zammad.conf +++ b/contrib/nginx/zammad.conf @@ -12,6 +12,7 @@ upstream zammad-websocket { server { listen 80; + listen [::]:80; # replace 'localhost' with your fqdn if you want to use zammad from remote server_name localhost; diff --git a/contrib/nginx/zammad_ssl.conf b/contrib/nginx/zammad_ssl.conf index b3c4d6bb8..ee4278caf 100644 --- a/contrib/nginx/zammad_ssl.conf +++ b/contrib/nginx/zammad_ssl.conf @@ -18,6 +18,7 @@ upstream zammad-websocket { server { listen 80; + listen [::]:80; server_name example.com; @@ -38,6 +39,7 @@ server { server { listen 443 ssl http2; + listen [::]:443 ssl http2; server_name example.com;