aboutsummaryrefslogtreecommitdiff
path: root/app/config/configuration/seafile/conf
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2020-10-28 15:09:51 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2020-10-28 15:09:51 +0100
commit9fef7ae777eb7fd92e6e650aa564ff474830d4eb (patch)
treefe203a6df6ff3bb8958a4ab206654ceea30fe2fe /app/config/configuration/seafile/conf
parente74737e6e3816aace186b23b5d4d6049877fb122 (diff)
downloadinfrastructure-9fef7ae777eb7fd92e6e650aa564ff474830d4eb.tar.gz
infrastructure-9fef7ae777eb7fd92e6e650aa564ff474830d4eb.zip
Port seafile
Diffstat (limited to 'app/config/configuration/seafile/conf')
-rw-r--r--app/config/configuration/seafile/conf/gunicorn.conf16
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