dynette/gunicorn.py

12 lines
425 B
Python
Raw Normal View History

2023-01-30 17:35:08 +01:00
command = "/var/www/dynette/venv/bin/gunicorn"
pythonpath = "/var/www/dynette"
2023-01-19 00:32:49 +01:00
workers = 4
2023-01-30 17:35:08 +01:00
user = "dynette"
bind = "unix:/var/www/dynette/sock"
pid = "/run/gunicorn/dynette-pid"
errorlog = "/var/log/dynette/error.log"
accesslog = "/var/log/dynette/access.log"
2023-01-19 00:32:49 +01:00
access_log_format = '%({X-Real-IP}i)s %({X-Forwarded-For}i)s %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"'
2023-01-30 17:35:08 +01:00
loglevel = "warning"
2023-01-19 00:32:49 +01:00
capture_output = True