Fixes #3371 - Listen to both IPv4 and IPv6

This commit is contained in:
Lorenzo Milesi 2021-04-16 08:34:14 +02:00 committed by Mantas
parent a5de91064a
commit 062f19df3c
2 changed files with 3 additions and 0 deletions

View file

@ -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;

View file

@ -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;