我想使用serve -s build在AWS中部署内置的react应用。 因此,我配置了我的nodecommand.config文件:
option_settings:
aws:elasticbeanstalk:container:nodejs:
NodeCommand: "npm install -g serve && serve -s build"
aws:elasticbeanstalk:application:environment:
NODE_PATH: src
NODE_ENV: production
PORT: 8081
但是,我收到错误502错误的网关,在ELB日志中什么也没有。
因此,我检查了ELB实例内部的端口,但是我发现实例内部没有开放的端口8081。