我启动UWSGI
脚本命令-
uwsgi --socket 0.0.0.0:5000 --protocol=http -w wsgi
在myapp文件夹中。
有一个文件(脚本)wsgi.py
,内容:
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return ["<h1 style='color:blue'>Hello There!</h1>"]
打开IP 0.0.0.0:5000后。没有错误,但看不到标签(标题)h1
。
在浏览器中的空白页和终端:
[pid: 30736|app: 0|req: 11/11] 176.57.76.232 () {34 vars in 672 bytes} [Sun Apr 7 12:12:22 2019] GET / => generated 0 bytes in 0 msecs (HTTP/1.1 200) 1 headers in 44 bytes (1 switches on core 0)
[pid: 30736|app: 0|req: 12/12] 176.57.76.232 () {36 vars in 645 bytes} [Sun Apr 7 12:12:22 2019] GET /favicon.ico => generated 0 bytes in 0 msecs (HTTP/1.1 200) 1 headers in 44 bytes (1 switches on core 0)