I have a web application deployed in cloudfoundry, and now i want to change the default protocol used by tomcat by editing servelt.xml in my cloud deployment.
Does cloudfoundry allow you to alter servlet.xml ?
<!--
<Connector port="8080" protocol="**HTTP/1.1**"
connectionTimeout="20000"
redirectPort="8443" />
-->
<Connector connectionTimeout="20000" port="8080"
protocol="**org.apache.coyote.http11.Http11NioProtocol**" redirectPort="8443"/>