美文网首页
linux安装 uwsgi 测试 test.py 不显示hell

linux安装 uwsgi 测试 test.py 不显示hell

作者: 博楠同学 | 来源:发表于2019-10-13 13:54 被阅读0次

    一般部署项目到服务器,会安装uwsgi,但是很多教程在安装它的时候会让你测试一下安装好了没,

    那就是最后浏览器输入ip:8000端口后服务器有反应,但是浏览器一片空白

    原因:因为测试用的代码是对python2.x 环境测试的,他喵的现在都用python3.x了,居然没人提这事!

    解决:
    python3.x请用一下用例测试:

    def application(env, start_response):
        start_response('200 OK', [('Content-Type','text/html')])
        return [b"Hello World"]
    

    至于python2.x还是老样子测试就行了:

    def application(env, start_response):
        start_response('200 OK', [('Content-Type','text/html')])
        return "Hello World"
    

    相关文章

      网友评论

          本文标题:linux安装 uwsgi 测试 test.py 不显示hell

          本文链接:https://www.haomeiwen.com/subject/lhghmctx.html