From 44a3c06e5e6f53b9febe5cb601a4baac6d7a5963 Mon Sep 17 00:00:00 2001 From: oib Date: Fri, 8 Aug 2025 08:57:25 +0200 Subject: [PATCH] gunicorn: bind to 0.0.0.0:8100 to align with nginx --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 3e7083c..be2b6d1 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,4 +1,4 @@ -bind = "0.0.0.0:8000" +bind = "0.0.0.0:8100" workers = 2 # Tune based on available CPU cores worker_class = "uvicorn.workers.UvicornWorker" timeout = 300 # Increased from 60 to 300 seconds (5 minutes)