是否可以将多个平台部署到AWS?
我有一个PHP应用程序,我也想运行一个小的python脚本。
我看到PHP平台默认安装Python,但使用eb deploy
AWS不会选择requirements.txt
并安装依赖项。
我尝试手动安装requirements.txt
,在尝试安装lxml
时会挂起。
我还尝试添加配置文件:
option_settings:
aws:elasticbeanstalk:container:python:
WSGIPath: application.py
NumProcesses: 3
NumThreads: 20
但现在eb deploy
抱怨:
ERROR: "option_settings" in one of the configuration files failed validation. More details to follow.
ERROR: Unknown or duplicate parameter: WSGIPath
ERROR: Unknown or duplicate parameter: NumThreads
ERROR: Unknown or duplicate parameter: NumProcesses
我相信这是因为eb
认为这只是一个PHP应用程序。
并排运行多个平台的正确方法是什么?