标签:http tar ati 文件 测试 color cat web服务 技术
uwsgi是一个WEB服务器,只要用于python部分,类似于nginx ,apache
1 使用pip命令安装
pip install uwsgi
安装成功以后 可以做一个简单的测试
2 新建一个test.py的文件
def application(env, start_response): start_response(‘200 OK‘, [(‘Content-Type‘,‘text/html‘)]) return "Hello World"
3 运行uwsgi服务
uwsgi --http :80 --wsgi-file test.py
4 浏览器输入IP 查看结果
注意:这个时候的测试 记得关闭其他占用80口的服务器
标签:http tar ati 文件 测试 color cat web服务 技术
原文地址:https://www.cnblogs.com/baker95935/p/9070942.html