3 Star 7 Fork 3

杨学峰/my_site

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gunicorn.py 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨学峰 提交于 2021-10-16 20:35 . 将uwsgi替换为gunicorn
import multiprocessing
bind = '0.0.0.0:9000' # 绑定ip和端口号
workers = multiprocessing.cpu_count() * 2 + 1 # 进程数
worker_class = "gevent"
worker_connections = 2048
access_log_format = '%(t)s %(p)s %(h)s "%(r)s" %(s)s %(L)s %(b)s %(f)s" "%(a)s"' # 设置gunicorn访问日志格式,错误日志无法设置
accesslog = "logs/gunicorn_access.log" # 访问日志文件
errorlog = "logs/gunicorn_error.log" # 错误日志文件
pidfile = "logs/gunicorn.pid"
timeout = 300 # 5分钟超时,上传文件超时问题
backlog = 10240
limit_request_fields = 32768 # 最大值32768, 头的key个数
limit_request_field_size = 0 # 头大小,0为不限
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/a1401358759/my_site.git
[email protected]:a1401358759/my_site.git
a1401358759
my_site
my_site
master

搜索帮助