1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00
mygpo_ynh/sources/patches/app-00-gunicorn.conf.py.patch
Jules Bertholet 4472ad0283 Add LDAP
2021-03-23 20:01:55 -04:00

20 lines
519 B
Diff

diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py
index c72ebeeb..cf0d5a3a 100644
--- a/conf/gunicorn.conf.py
+++ b/conf/gunicorn.conf.py
@@ -1,15 +1,11 @@
import multiprocessing
import os
-bind = "unix:/tmp/mygpo.sock"
workers = multiprocessing.cpu_count()
# The maximum number of requests a worker will process before restarting.
# max_requests = 1000
-errorlog = "/var/log/gunicorn/error.log"
-accesslog = "/var/log/gunicorn/access.log"
-loglevel = "info"
timeout = 120
graceful_timeout = 60