diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-28 15:09:51 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-28 15:09:51 +0100 |
commit | 9fef7ae777eb7fd92e6e650aa564ff474830d4eb (patch) | |
tree | fe203a6df6ff3bb8958a4ab206654ceea30fe2fe /app/config/configuration | |
parent | e74737e6e3816aace186b23b5d4d6049877fb122 (diff) | |
download | infrastructure-9fef7ae777eb7fd92e6e650aa564ff474830d4eb.tar.gz infrastructure-9fef7ae777eb7fd92e6e650aa564ff474830d4eb.zip |
Port seafile
Diffstat (limited to 'app/config/configuration')
-rw-r--r-- | app/config/configuration/seafile/conf/gunicorn.conf | 16 |
1 files changed, 16 insertions, 0 deletions
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 |