From 9fef7ae777eb7fd92e6e650aa564ff474830d4eb Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Wed, 28 Oct 2020 15:09:51 +0100 Subject: Port seafile --- app/config/configuration/seafile/conf/gunicorn.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/config/configuration/seafile/conf/gunicorn.conf (limited to 'app/config/configuration/seafile/conf') diff --git a/app/config/configuration/seafile/conf/gunicorn.conf b/app/config/configuration/seafile/conf/gunicorn.conf new file mode 100644 index 0000000..415fd32 --- /dev/null +++ b/app/config/configuration/seafile/conf/gunicorn.conf @@ -0,0 +1,16 @@ +import os + +daemon = True +workers = 5 + +# default localhost:8000 +bind = "[::]:8000" + +# Pid +pids_dir = '/srv/webstore/pids' +pidfile = os.path.join(pids_dir, 'seahub.pid') + +# for file upload, we need a longer timeout value (default is only 30s, too short) +timeout = 1200 + +limit_request_line = 8190 -- cgit v1.2.3