diff options
Diffstat (limited to 'checker/src/gunicorn.conf.py')
| -rw-r--r-- | checker/src/gunicorn.conf.py | 7 |
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 |
