From 5ffb25b71d72e9f9c62a1ded91728d088801b868 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Wed, 31 Aug 2022 10:59:55 -0700 Subject: [PATCH] Tweaks gunicorn to preload the app and use shared memory for temporary fs --- gunicorn.conf.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index daebd4bea..a3ada7a64 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,9 +1,17 @@ import os +# See https://docs.gunicorn.org/en/stable/settings.html for +# explanations of settings + bind = f'{os.getenv("PAPERLESS_BIND_ADDR", "[::]")}:{os.getenv("PAPERLESS_PORT", 8000)}' + workers = int(os.getenv("PAPERLESS_WEBSERVER_WORKERS", 1)) worker_class = "paperless.workers.ConfigurableWorker" timeout = 120 +preload_app = True + +# https://docs.gunicorn.org/en/stable/faq.html#blocking-os-fchmod +worker_tmp_dir = "/dev/shm" def pre_fork(server, worker):