From 2d2b8f591d24951d223e749622ecfb835a970fd1 Mon Sep 17 00:00:00 2001 From: Adrian Priestley Date: Mon, 17 Feb 2025 17:21:24 -0330 Subject: [PATCH] fixup! Update Dockerfile --- Dockerfile | 2 +- deploy/example_gunicorn.conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d324b1c0e1..3abeeb31ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ RUN python -m venv $VIRTUAL_ENV; \ # hadolint ignore=DL3042 RUN pip install -r WebHostLib/requirements.txt \ - gunicorn==23.0.0 \ + gunicorn==23.0.0; \ python ModuleUpdate.py -y RUN cythonize -i _speedups.pyx diff --git a/deploy/example_gunicorn.conf.py b/deploy/example_gunicorn.conf.py index 4faaef80bf..49f153df67 100644 --- a/deploy/example_gunicorn.conf.py +++ b/deploy/example_gunicorn.conf.py @@ -5,7 +5,7 @@ accesslog = "-" access_log_format = ( '%({x-forwarded-for}i)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"' ) -worker_class = "gthread" # "sync" | "gthread" | eventlet" | "gevent" | "tornado" +worker_class = "gthread" # "sync" | "gthread" forwarded_allow_ips = "*" loglevel = "info"