在本地部署到tomcat时,我将这个更改(以下)转换为server.xml,有没有办法将它提供给Elastic Beanstalk?
<Connector connectionTimeout="20000" port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol" redirectPort="8443"/>'
谢谢
“
解决方法
您现在可以在不提供自定义AMI的情况下进行.按照以下说明进行操作:
http://aws.typepad.com/aws/2012/10/customize-elastic-beanstalk-using-configuration-files.html
为了在webapp中提供自定义服务器xml创建.ebextensions文件夹,放在那里定制server.xml文件并添加一个文件:server-update.config,其中包含:
container_commands: replace-config: command: cp .ebextensions/server.xml /etc/tomcat7/server.xml