django-fritzconnection_ynh/conf/gunicorn.conf.py

21 lines
492 B
Python
Raw Normal View History

2022-04-02 17:44:57 +02:00
"""
Configuration for Gunicorn
"""
import multiprocessing
bind = '127.0.0.1:__PORT__'
# https://docs.gunicorn.org/en/latest/settings.html#workers
workers = multiprocessing.cpu_count() * 2 + 1
# https://docs.gunicorn.org/en/latest/settings.html#logging
loglevel = 'info'
# https://docs.gunicorn.org/en/latest/settings.html#logging
accesslog = '__LOG_FILE__'
errorlog = '__LOG_FILE__'
# https://docs.gunicorn.org/en/latest/settings.html#pidfile
2022-08-16 09:47:54 +02:00
pidfile = '__FINALPATH__/gunicorn.pid'