My python version is 2.7.2
蟒蛇被uwsgi乳寧 我的nginx的配置是如何解決Tornado官方規範「Hello,world」示例應用程序的錯誤?
location /{
uwsgi_pass 127.0.0.1:8888;
include uwsgi_params;
}
app.py
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
if __name__ == "__main__":
application = tornado.web.Application([
(r"/", MainHandler),
])
application.listen(9090)
tornado.ioloop.IOLoop.instance().start()
然後我跑「我跑 「uwsgi -s:9090 -w應用」
但它拋出一個錯誤
[pid:28719 | app:0 | req:21/21] 118 .2017.180.64(){38 vars in 716 bytes} [Sun Mar 23 22:44:34 2014] GET/=>在0 msecs中生成0字節(HTTP/1.1 500)0字節中的0個頭0)AttributeError:應用程序實例沒有致電方法
如何解決?
你可以鏈接或粘貼你的uwsgi配置文件(/etc/uwsgi/your-app.ini)嗎? – x3al