查看“How to use Django with Gunicorn”的源代码
←
How to use Django with Gunicorn
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
常用的WSGI容器有Gunicorn和uWSGI,但Gunicorn直接用命令启动,不需要编写配置文件,相对uWSGI要容易很多 Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. 特点: Gunicorn是基于prefork模式的Python wsgi应用服务器,支持 Unix like的系统 采用epoll (Linux下) 非阻塞网络I/O 模型 多种Worker类型可以选择 同步的,基于事件的(gevent tornado等),基于多线程的 高性能,比之uwsgi不相上下 配置使用非常简单 支持 Python 2.x >= 2.6 or Python 3.x >= 3.2 =Installation= <pre> pip install gunicorn on debian sudo apt-get install gunicorn cat myapp.py def app(environ, start_response): data = b"Hello, World!\n" start_response("200 OK", [ ("Content-Type", "text/plain"), ("Content-Length", str(len(data))) ]) return iter([data]) gunicorn -w 4 myapp:app --bind 0.0.0.0 </pre> =run django project= <pre> if project name is ecmdb gunicorn ecmdb.wsgi:application -b 0.0.0.0:8888 但是得处理一下 图片 css 什么的哦 </pre> [[Nginx+uwsgi+python2.7 on centos7]] =see also= [https://www.jianshu.com/p/260f18aa5462 good_Gunicorn运行与配置] [https://www.jianshu.com/p/5600af9ff238 django+nginx+gunicorn部署配置] [https://segmentfault.com/a/1190000002417567 nginx + gunicorn + django的简单部署] http://docs.gunicorn.org/en/latest/index.html [https://www.zhihu.com/question/38528616 Nginx、Gunicorn在服务器中分别起什么作用] [https://www.cnblogs.com/xybaby/p/6296974.html gunicorn 简介] [https://www.jianshu.com/p/52d8e3deaa16 gunicorn学习介绍] [https://my.oschina.net/u/90679/blog/106725 gunicorn 工作原理] [[category:django]] [[category:python]]
返回至
How to use Django with Gunicorn
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息