Python编程:uWSGI+nginx配置flask实例
【摘要】 uWSGI简单理解为:Web服务器
安装模块
pip install uwsgi
pip install uwsgitop # 监控模块12
uWSGI测试
# foobar.py
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html...
uWSGI简单理解为:Web服务器
安装模块
pip install uwsgi
pip install uwsgitop # 监控模块
- 1
- 2
uWSGI测试
# foobar.py
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello World"]
- 1
- 2
- 3
- 4
- 5
$ uwsgi --http :9090 --wsgi-file foobar.py
- 1
部署flask
# myflaskapp.py
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index(): return "Hello world!"
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
# yourfile.ini
[uwsgi]
socket = 127.0.0.1:3031
venv = /Users/qmp/.virtualenvs/py3 # python环境路径
chdir = /Users/workspace/mydemo/uwsgi_demo
wsgi-file = myflaskapp.py
callable = app
processes = 4
threads = 2
stats = 127.0.0.1:9191
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
nginx配置
server { listen 9090; server_name localhost; location / { include uwsgi_params; uwsgi_pass 127.0.0.1:3031; }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
通过nginx将9090端口的内容转发到uwsgi的3031端口
运行
$ uwsgi yourfile.ini
- 1
访问测试:
nignx端口:http://127.0.0.1:9090/
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/82594965
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)