From 8aac44bb98af5442e29c8cb9a5a4acbe40d96bb2 Mon Sep 17 00:00:00 2001 From: Louis Burda Date: Wed, 28 Apr 2021 10:51:50 +0200 Subject: added sample service templates, basic service outline and moved service info to documentation dir --- checker/src/gunicorn.conf.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 checker/src/gunicorn.conf.py (limited to 'checker/src/gunicorn.conf.py') diff --git a/checker/src/gunicorn.conf.py b/checker/src/gunicorn.conf.py new file mode 100644 index 0000000..a382951 --- /dev/null +++ b/checker/src/gunicorn.conf.py @@ -0,0 +1,7 @@ +# This is a configuration file required by the checker. +import multiprocessing +worker_class = "eventlet" +workers = multiprocessing.cpu_count()*2+1 +bind = "0.0.0.0:3031" +timeout = 90 +keepalive = 3600 \ No newline at end of file -- cgit v1.2.3-71-gd317