1 Star 1 Fork 64

xiongyang519702/QAPlatform

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
uwsgi.ini 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
[uwsgi]
# 直接做web服务器使用 python manage.py runserver ip:port
http = 0.0.0.0:8000
# 项目目录
chdir = ./
# 虚拟环境目录
home = ./venv
# 项目的application
module = QAPlatform.wsgi:application
# 项目中wsgi.py文件的目录,相对于项目目录
wsgi-file = QAPlatform/wsgi.py
# 以独立守护进程运行
master = True
# 开启的进程数量
processes = 4
# 允许在请求中开启新线程
enable-threads = true
# 每个进程的线程数
threads = 6
# 最大超时时间
harakiri = 300
# 最大请求数
max-requests = 5000
pidfile = ./uwsgi.pid
daemonize = ./uwsgi.log
# 为文件上传修复UnicodeEncodeError,能接受非ASCII字符的文件名
env = LANG = en_US.UTF-8
# 服务退出或重启,自动删除pid和socket文件
vacuum = True
# 设置请求的最大大小
buffer-size = 65536
# 序列化接受的内容,如果可能的话
thunder-lock = true
# 启用内存报告,报告占用的内存
memory-report = true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xiongyang519702/QAPlatform.git
git@gitee.com:xiongyang519702/QAPlatform.git
xiongyang519702
QAPlatform
QAPlatform
master

搜索帮助