Django项目部署
环境搭建(由于window下不支持uwsgi的安装,故在Linux-centos下尝试环境搭建)
pip install uwsgi
编写test.py脚本测试是否安装成功
def application(env,start_response): start_response('200 Ok',[('Content-Type','text/html')]) return [b"hello world"]
uwsgi --http :8001 --wsgi-file test.py
注意:若执行该命令时报错bash: uwsgi: command not found,解决办法是创建软链接:ln -s /usr/local/python3/bin/uwsgi /usr/bin/uwsgi
浏览器访问:http://10.1.1.71:8001/ 看到如下界面则证明 uwsgi 安装成功
踩坑是成长最快的方式