我在使用 Python 的 AWS ElasticBean 上的 WSGIPath 有问题。当我设置:
option_settings:
- namespace: aws:elasticbeanstalk:container:python
option_name: WSGIPath
value: wsgi.py
我得到一个WSGIPath not found
错误。当我简单地将我的 wsgi.py 重命名为 application.py 并将我的 WSGIPath 配置更改.ebextensions/myconfig.config
为以下内容时,一切都会再次运行。
option_settings:
- namespace: aws:elasticbeanstalk:container:python
option_name: WSGIPath
value: application.py
有没有人有任何线索?