From 62ec16fdec76db2db885fa6a51d5df715ffe74dd Mon Sep 17 00:00:00 2001 From: "Benjamin W. Broersma" Date: Thu, 22 Aug 2024 21:01:21 +0200 Subject: [PATCH] Add UWSGI_CHEAPER 0 to Dockerfile Fix uwsgi "invalid cheaper value: must be lower than processes", see #495. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 33eade6c..3aea7dd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,7 @@ USER root ENV UWSGI_GID root ENV UWSGI_UID root ENV UWSGI_MODULE dashboard.wsgi +ENV UWSGI_CHEAPER 0 # serve static files (to caching proxy) from collected/generated static files ENV UWSGI_STATIC_MAP /static=/srv/dashboard/static # set proxy and browser caching for static files to 1 month