access log to stdout

This commit is contained in:
Joeri Exelmans 2025-11-13 15:27:32 +01:00
parent 844215b18e
commit 249d867b17

View file

@ -19,7 +19,7 @@ def run_gunicorn():
options = {
"bind": "127.0.0.1:15478",
"workers": 12,
"accesslog": "/dev/stderr",
"accesslog": "-",
}
StandaloneApplication(app, options).run()