From 2706f347a4b8f098b0cd395c44fc73a364f2e87c Mon Sep 17 00:00:00 2001 From: Jenny Danzmayr Date: Sun, 12 Nov 2023 16:25:10 +0100 Subject: [PATCH] fixed uwsgi config for stats via http --- docker/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 44d96f90..05f74472 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -21,6 +21,7 @@ web) --pythonpath "/app/src" \ --enable-threads --ignore-sigpipe --disable-logging --need-app \ --stats ":5000" \ + --stats-http \ --http "0.0.0.0:8000" ;; webstatic) @@ -32,6 +33,7 @@ webstatic) --static-map "${C3NAV_STATIC_URL:-/static}=${C3NAV_STATIC_ROOT:-/app/c3nav/static.dist}" \ --static-safe "/app/c3nav/static" \ --stats ":5000" \ + --stats-http \ --http "0.0.0.0:8000" ;; web-async)