我正在尝试使用uWSGI文件指令运行一个示例应用程序,并为其使用两个文件testService.ini(配置文件)和testService.py(应用程序文件)。
Locale
使用以下命令运行上述文件:**testService.ini**
[uwsgi]
wsgi-file = '/opt/testService/testService.py'
callable = app
**testService.py**
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
uwsgi --http :9090 --wsgi-file testService.ini
在浏览器中,我收到“内部服务器错误”。有人可以帮助我了解我在做什么错吗?