From 90303eb7064eb23d7d5ccf3303f123ea4d1f7e81 Mon Sep 17 00:00:00 2001 From: felixaldam-gates <44896994+Felixim0@users.noreply.github.com> Date: Wed, 31 Jul 2024 14:18:04 +0100 Subject: [PATCH] Updated Gunicorn to use new SSL config spec --- gconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gconf.py b/gconf.py index ab44edc8..c75c40d3 100644 --- a/gconf.py +++ b/gconf.py @@ -7,7 +7,7 @@ # Gunicorn config bind = ":" + str(PORT) # Disable TLSv1.0 and TLSv1.1 -ssl_version = 'TLSv1_2' +ssl_context = 'TLSv1_2' workers = multiprocessing.cpu_count() * 2 + 1 threads = 2 * multiprocessing.cpu_count() timeout = 420