Files
WebServer/gunicorn_conf.py

6 lines
170 B
Python
Raw Permalink Normal View History

2025-08-15 14:58:11 +08:00
bind = "0.0.0.0:5000"
workers = 4
worker_class = "gevent" # 使用异步 worker需安装 `gevent`
timeout = 30
accesslog = "-" # 输出到控制台
errorlog = "-"