安装uwsgi
从零开始搭建个人博客第二步,就是使用uwsgi来做动态代理。
1. 安装uwsgi
用上一篇安装好的pip3安装
pip3 install uwsgi
做个软连接
ln -s /usr/local/python3/bin/uwsgi /usr/bin/uwsgi
2.测试一下uwsgi
新建一个文件:test.py
内容如下:
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return "Hello World"
测试uwsgi
uwsgi --http :8001 --wsgi-file test.py
访问 http://localhost:8001 就应该能看到 “Hello World”了。