From 3f8c74c4af1c3e15670425ddfd06ff36c6b51e13 Mon Sep 17 00:00:00 2001 From: Andrew Rowson Date: Sat, 26 Dec 2020 11:53:29 +0000 Subject: [PATCH] Updated bind param gunicorn config file to listen on ipv6 --- docker/gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/gunicorn.conf.py b/docker/gunicorn.conf.py index a2f456079..88d881664 100644 --- a/docker/gunicorn.conf.py +++ b/docker/gunicorn.conf.py @@ -1,4 +1,4 @@ -bind = '127.0.0.1:8000' +bind = '[::]:8000' backlog = 2048 workers = 3 worker_class = 'sync'