当在本地部署到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
为了提供自定义服务器xml,请在webapp中创建.ebextensions文件夹,在其中放置自定义 server.xml 文件,然后再添加一个文件: server-update.config ,内容如下:
container_commands: replace-config: command: cp .ebextensions/server.xml /etc/tomcat7/server.xml