
File name
Commit message
Commit date
04-24
04-24
04-24
04-24
File name
Commit message
Commit date
04-24
from datetime import datetime
import os
if not os.path.exists("logs"):
os.makedirs("logs")
os.makedirs("logs/gunicorn")
bind = "192.168.0.195:27461"
workers = 2
#worker_type = 'gevent'
reload = True
accesslog = f"./logs/gunicorn/access_{datetime.now().strftime('%Y-%m-%d_%H')}.log"
errorlog = f"./logs/gunicorn/error_{datetime.now().strftime('%Y-%m-%d_%H')}.log"
loglevel = "info"