diff --git a/project/gunicorn_http.py b/project/gunicorn_http.py
index 16f7d832029a1791ae00bedf702ae56550641741..3c595c28ff737f31b0427552fcabb69c2b053da8 100644
--- a/project/gunicorn_http.py
+++ b/project/gunicorn_http.py
@@ -73,7 +73,7 @@ preload_app = True
 #       A positive integer. Generally set in the 1-5 seconds range.
 #
 
-workers = int(os.environ.get("GUNICORN_PROCESSES", 4))
+workers = int(os.environ.get("GUNICORN_PROCESSES", 1))
 threads = int(os.environ.get("GUNICORN_THREADS", 25))
 worker_class = "uvicorn.workers.UvicornWorker"
 # worker_connections = 1000
diff --git a/project/gunicorn_https.py b/project/gunicorn_https.py
index e48f9e289674beb980ef73d99dc302341b1252b0..46888077b95c201670158e9e19d5ee468a0cc2f5 100644
--- a/project/gunicorn_https.py
+++ b/project/gunicorn_https.py
@@ -75,7 +75,7 @@ preload_app = True
 #       A positive integer. Generally set in the 1-5 seconds range.
 #
 
-workers = int(os.environ.get("GUNICORN_PROCESSES", 4))
+workers = int(os.environ.get("GUNICORN_PROCESSES", 1))
 threads = int(os.environ.get("GUNICORN_THREADS", 25))
 worker_class = "uvicorn.workers.UvicornWorker"
 # worker_connections = 1000