diff --git a/gunicorn.py b/gunicorn.py new file mode 100644 index 0000000..d068d61 --- /dev/null +++ b/gunicorn.py @@ -0,0 +1,6 @@ +import multiprocessing + +preload_app = True +proc_name = 'lemoncurry' +worker_class = 'gevent' +workers = multiprocessing.cpu_count() * 2 + 1