diff --git a/files/assets/images/rDrama/sidebar/730.webp b/files/assets/images/rDrama/sidebar/730.webp new file mode 100644 index 000000000..04e799644 Binary files /dev/null and b/files/assets/images/rDrama/sidebar/730.webp differ diff --git a/files/assets/images/rDrama/sidebar/731.webp b/files/assets/images/rDrama/sidebar/731.webp new file mode 100644 index 000000000..3dd3f6f19 Binary files /dev/null and b/files/assets/images/rDrama/sidebar/731.webp differ diff --git a/gunicorn.conf.py b/gunicorn.conf.py new file mode 100644 index 000000000..11280b1e4 --- /dev/null +++ b/gunicorn.conf.py @@ -0,0 +1,16 @@ +bind = '0.0.0.0:5000' + +workers = 9 +worker_class = 'gevent' + +max_requests = 30000 +max_requests_jitter = 30000 + +reload = True +#print_config = True + +def worker_abort(worker): + import os + worker.log.info("Worker %s received SIGABRT." % worker.pid) + os.abort() +