favicon-api-v3/gunicorn.conf.py

25 lines
442 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# -*- coding: utf-8 -*-
# 绑定地址和端口
bind = "0.0.0.0:8000"
# Worker 进程数
workers = 4
# 使用 Uvicorn 的 ASGI Worker
worker_class = "uvicorn.workers.UvicornWorker"
# 可选:日志级别
loglevel = "info"
# loglevel = "warning"
# 可选访问日志和错误日志输出到控制台Docker 常用)
accesslog = "-"
errorlog = "-"
# 可选:超时时间(秒)
timeout = 120
# Keep - Alive超时
keepalive = 5