我是beanstalk的新手,甚至是AWS。我已经成功部署了一个Node / Express应用程序,它为React / Redux SPA提供服务。
我不得不将一些部署后的文档作为.ebextension配置文件进行攻击,并且在这样做时,似乎缺少大量文档。例如,在http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs_express.html中,有一节讨论配置文件选项,如:
option_settings:
aws:elasticbeanstalk:container:nodejs:
NodeCommand: "npm start"
我无法在任何地方找到提及其他命名空间,nodejs命名空间中的其他选项,其他选项设置选项等.Ebextensions基本上看起来像一个大黑盒子。
是否有任何完整的文档或有用的资源?
谢谢!
答案 0 :(得分:1)
您可以在此处找到常规选项设置“https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html”和平台特定选项设置“https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-specific.html”。
此外,“https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html”中还提供了通过ebextensions进行的其他可能的自定义。希望这有帮助!