gunicorn配置
Posted xuqidong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gunicorn配置相关的知识,希望对你有一定的参考价值。
# -*- coding: utf-8 -*- from multiprocessing import cpu_count bind = ["127.0.0.1:9000"] # 线上环境不会开启在公网 IP 下,一般使用内网 IP daemon = True # 是否开启守护进程模式 pidfile = ‘logs/gunicorn.pid‘ workers = cpu_count() * 2 # 工作进程数量 worker_class = "gevent" # 指定一个异步处理的库 worker_connections = 65535 keepalive = 60 # 服务器保持连接的时间,能够避免频繁的三次握手过程 timeout = 30 graceful_timeout = 10 forwarded_allow_ips = ‘*‘ # 日志处理 capture_output = True loglevel = ‘info‘ errorlog = ‘logs/error.log‘
以上是关于gunicorn配置的主要内容,如果未能解决你的问题,请参考以下文章