From 4d7fb751eb4e19d2eea839170402628af6b961e5 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 17 Jul 2023 12:53:02 +0200 Subject: [PATCH] remove unneeded gunicorn (#5248) --- docs/_includes/gunicorn.conf.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 docs/_includes/gunicorn.conf.py diff --git a/docs/_includes/gunicorn.conf.py b/docs/_includes/gunicorn.conf.py deleted file mode 100644 index aeee2a366b..0000000000 --- a/docs/_includes/gunicorn.conf.py +++ /dev/null @@ -1,5 +0,0 @@ -import multiprocessing - -bind = "0.0.0.0:8000" - -workers = multiprocessing.cpu_count() * 2 + 1