将非常简单的 Hello, World 类型的烧瓶应用程序部署到 AWS Elastic Beanstalk 时遇到问题。我正在使用 eb CLI 工具,它在 Mac 上安装了 brew 和 python 3。下面是一些示例代码:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
@app.route('/<username>')
def hello_user(username):
return f'Hello, {username}!'
# run the app.
if __name__ == "__main__":
# Setting debug to True enables debug output. This line should be
# removed before deploying a production app.
app.debug = True
app.run(port=8000)
它按预期在本地运行,我可以通过 CLI 部署它,但是当我访问该应用程序时,我收到 502 Bad Gateway。
我试过了:
使用来自控制台的 URL 和eb open.
在 URL 末尾指定端口 5000(默认 flask)和 8000。
使用app.run(),但app.run(port=8000)没有成功。
我浏览了文档,但找不到修复方法。如果人们有任何他们认为有用的建议或链接,我们将不胜感激。
qq_笑_17
相关分类