码迷,mamicode.com
首页 > 其他好文 > 详细

gunicorn配置

时间:2020-06-23 01:23:38      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:pid   coding   class   event   指定   cap   ons   evel   worker   

# -*- 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配置

标签:pid   coding   class   event   指定   cap   ons   evel   worker   

原文地址:https://www.cnblogs.com/xuqidong/p/13179874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!