码迷,mamicode.com
首页 > 其他好文 > 详细

uwsgi的使用

时间:2018-05-22 12:36:39      阅读:171      评论:0      收藏:0      [点我收藏+]

标签: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口的服务器

uwsgi的使用

标签:http   tar   ati   文件   测试   color   cat   web服务   技术   

原文地址:https://www.cnblogs.com/baker95935/p/9070942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!