标签:文档 sgi pre 其他 -- mat info curl form
uWSGI是一个Web服务器,它实现了WSGI协议、uwsgi、http等协议。Nginx中HttpUwsgiModule的作用是与uWSGI服务器进行交换。
要注意 WSGI / uwsgi / uWSGI 这三个概念的区分。
pip install uwsgi
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"] # python3
#return ["Hello World"] # python2
uwsgi --http :8000 --wsgi-file test.py
user@: curl 127.0.0.1:8000
笔者也定位了这个问题,发现云服务器的端口需要自己去打开的,原因就是这个端口号没有打开:
打开方法:
标签:文档 sgi pre 其他 -- mat info curl form
原文地址:https://www.cnblogs.com/dylancao/p/12264600.html