From 4f833202d1a0f212e5dce204b21853c11f98e4d7 Mon Sep 17 00:00:00 2001 From: Andrew Simonson Date: Sat, 20 Jul 2024 18:47:20 -0500 Subject: [PATCH] remove websocket support --- gunicorn.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf b/gunicorn.conf index 334b24e..6412df9 100644 --- a/gunicorn.conf +++ b/gunicorn.conf @@ -1,3 +1,3 @@ [program:gunicorn] -command=/usr/bin/gunicorn -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app -b localhost:5000 +command=/usr/bin/gunicorn app:app -b localhost:5000 directory=/deploy/app