You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
622 B
24 lines
622 B
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
@Time : 2023/3/6 17:58
|
|
@Author :
|
|
@FileName:
|
|
@Software:
|
|
@Describe:
|
|
"""
|
|
# 并行工作线程数
|
|
workers = 1
|
|
# 监听内网端口5000【按需要更改】
|
|
bind = '0.0.0.0:14001'
|
|
|
|
worker_class = "gevent"
|
|
# 设置守护进程【关闭连接时,程序仍在运行】
|
|
daemon = True
|
|
# 设置超时时间120s,默认为30s。按自己的需求进行设置
|
|
timeout = 120
|
|
# 设置访问日志和错误信息日志路径
|
|
accesslog = './check_logs/acess.log'
|
|
errorlog = './check_logs/error.log'
|
|
# access_log_format = '%(h) - %(t)s - %(u)s - %(s)s %(H)s'
|
|
# errorlog = '-' # 记录到标准输出
|