我试图让mongrel2与m2wsgi一起工作。我需要做什么才能看到“Hello World!” 在我的浏览器中?Mongrel2 已安装,但尚未完成任何站点配置。
def app(environ, start_response):
start_response("200 OK", [('Content-Type', 'text/plain')])
return ['Hello World!', ]
尝试运行它:
m2wsgi test
AssertionError:指定的应用程序不可调用
我正在运行 Ubuntu Maverick。