From 1b564ab7dec3f1339daf4a6c8a6504349177a835 Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Thu, 13 Jun 2024 10:26:14 +0800 Subject: [PATCH] do not specify interface, to make docker happier --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index fc3ca39d..367abf89 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -5,7 +5,7 @@ threads = multiprocessing.cpu_count() * 2 + 1 worker_tmp_dir = '/dev/shm' -bind = '127.0.0.1:5000' +#bind = '127.0.0.1:5000' umask = 0o007 reload = False