From dd684a9b2b46747ea5a77a022beaac07b9770cc3 Mon Sep 17 00:00:00 2001 From: Dukuze Date: Tue, 21 Nov 2023 15:34:17 +0900 Subject: [PATCH] Fix capacity --- gunicorn_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index 9bba2ba..ecc1ef8 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -1,4 +1,4 @@ -workers = 4 # Adjust based on your server capacity +workers = 3 # Adjust based on your server capacity bind = "0.0.0.0:8000" worker_class = "gthread" threads = 4 # Adjust based on your server capacity