我正在尝试通过 Vscode 在 Azure App Service 中部署 hello world flask 应用程序。但是在浏览 URL 时部署后,我收到以下错误
文件夹结构看起来像这样,在应用服务编辑器中
我的网络配置文件
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="WSGI_HANDLER" value="application.app"/>
<add key="PYTHONPATH" value="D:\home\site\wwwroot"/>
<add key="WSGI_LOG" value="D:\home\LogFiles\wfastcgi.log"/>
</appSettings>
<system.webServer>
<handlers>
<add name="PythonHandler" path="*" verb="*" modules="FastCgiModule"
scriptProcessor="D:\home\Python364x64\python.exe|D:\home\Python364x64\wfastcgi.py"
resourceType="Unspecified" requireAccess="Script"/>
</handlers>
</system.webServer>
</configuration>
我的 application.py 代码是
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return "Hello Updated World!"
if __name__ == '__main__':
app.run()
我需要做什么才能单击我的应用程序网址,我将能够看到“Hello Updated World”..
我在网络应用程序中使用窗口,python 3.6 ..