phonebook_be/gunicorn.conf.py
2020-04-21 11:09:13 +08:00

8 lines
161 B
Python

# 并行工作线程数
workers = 4
bind = '0.0.0.0:80'
daemon = True
timeout = 120
accesslog = './logs/acess.log'
errorlog = './logs/error.log'
autostart = True