amazon-web-services – AWS Spring启动应用程序上的502错误请求
作者:互联网
您好我是新的AWS并尝试在Elastic Beanstalk中部署Spring启动应用程序.部署成功但无法访问应用程序.获取502 Bad Request Gateway nginx / 1.10.1错误.部署在Configuration上完成
运行Java 8(nginx代理服务器)的64位Amazon Linux 2016.09 v2.2.0.是否有任何方法可以解决这个问题.谷歌搜索后发现这是因为端口不匹配.我想知道我应该在哪里更改端口号.
解决方法:
来自AWS documentation:
By default, Spring Boot applications will listen on port 8080. Elastic
Beanstalk assumes that the application will listen on port 5000. There
are two ways to fix this discrepancy: change the port Elastic
Beanstalk is configured to use, or change the port the Spring Boot
application listens on.
您可以在application.properties中的server.port属性中设置端口,也可以通过设置SERVER_PORT环境属性在上面提到的文档中通过环境进行设置.
标签:nginx,spring-boot,amazon-web-services,amazon-ec2,elastic-beanstalk 来源: https://codeday.me/bug/20191008/1875427.html