aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/gunicorn.conf.py
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-04-28 10:51:50 +0200
committerLouis Burda <quent.burda@gmail.com>2021-04-28 10:51:50 +0200
commit8aac44bb98af5442e29c8cb9a5a4acbe40d96bb2 (patch)
treeb5cea78af979ad734edf5835f1917b172e09cfd7 /checker/src/gunicorn.conf.py
parent53156862fa68b130c9a57f2824275f99017929ac (diff)
downloadenowars5-service-stldoctor-8aac44bb98af5442e29c8cb9a5a4acbe40d96bb2.tar.gz
enowars5-service-stldoctor-8aac44bb98af5442e29c8cb9a5a4acbe40d96bb2.zip
added sample service templates, basic service outline and moved service info to documentation dir
Diffstat (limited to 'checker/src/gunicorn.conf.py')
-rw-r--r--checker/src/gunicorn.conf.py7
1 files changed, 7 insertions, 0 deletions
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