From 4399eaab35694ccd7a097824c203dd6efe074876 Mon Sep 17 00:00:00 2001 From: Andy Loftus Date: Thu, 11 Jan 2024 04:40:10 +0000 Subject: [PATCH] remove bind localhost only --- jiracmdline/gunicorn.conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jiracmdline/gunicorn.conf.py b/jiracmdline/gunicorn.conf.py index c84fb55..7df719f 100644 --- a/jiracmdline/gunicorn.conf.py +++ b/jiracmdline/gunicorn.conf.py @@ -1,7 +1,6 @@ accesslog = '-' loglevel = 'debug' -# bind = '0.0.0.0:8000' -bind = '127.0.0.1:8000' +bind = '0.0.0.0:8000' timeout = 120 # from https://pythonspeed.com/articles/gunicorn-in-docker/ worker_tmp_dir = "/dev/shm"