From 249d867b17168250cd8854be722ebb683b53a8cf Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Thu, 13 Nov 2025 15:27:32 +0100 Subject: [PATCH] access log to stdout --- src/mtl/run_gunicorn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mtl/run_gunicorn.py b/src/mtl/run_gunicorn.py index cd9b5cd..a640187 100644 --- a/src/mtl/run_gunicorn.py +++ b/src/mtl/run_gunicorn.py @@ -19,7 +19,7 @@ def run_gunicorn(): options = { "bind": "127.0.0.1:15478", "workers": 12, - "accesslog": "/dev/stderr", + "accesslog": "-", } StandaloneApplication(app, options).run()