From 991f5007754f6249ff5022824112f5a23b22724d Mon Sep 17 00:00:00 2001 From: sabaimran Date: Mon, 25 Mar 2024 16:12:39 +0530 Subject: [PATCH] Do not pipe access/error logs to separate files. Flow to stdout/stderr --- gunicorn-config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn-config.py b/gunicorn-config.py index bfed49e7..97a9191a 100644 --- a/gunicorn-config.py +++ b/gunicorn-config.py @@ -5,6 +5,6 @@ workers = 8 worker_class = "uvicorn.workers.UvicornWorker" timeout = 120 keep_alive = 60 -accesslog = "access.log" -errorlog = "error.log" +accesslog = "-" +errorlog = "-" loglevel = "debug"