Fixes #3371 - Listen to both IPv4 and IPv6
This commit is contained in:
parent
a5de91064a
commit
062f19df3c
2 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue