pyfedi/gunicorn.conf.py

18 lines
206 B
Python
Raw Normal View History

2024-02-08 08:39:08 +13:00
2025-01-19 16:01:03 +13:00
workers = 1
2024-02-08 08:39:08 +13:00
worker_tmp_dir = '/dev/shm'
2024-06-14 08:08:28 +08:00
bind = '0.0.0.0:5000'
2024-02-08 08:39:08 +13:00
umask = 0o007
reload = False
2025-01-19 16:01:03 +13:00
worker_class = 'gevent'
2024-02-08 08:39:08 +13:00
#logging
accesslog = '-'
errorlog = '-'
2025-01-19 16:03:16 +13:00
max_requests = 5000
2024-02-08 08:39:08 +13:00
max_requests_jitter = 50