Skip to content

Instantly share code, notes, and snippets.

@rponte
Created May 23, 2013 19:17
Show Gist options
  • Save rponte/5638686 to your computer and use it in GitHub Desktop.
Save rponte/5638686 to your computer and use it in GitHub Desktop.
Simple Tomcat minimal server.xml
<?xml version='1.0' encoding='utf-8'?>
<Server port="8005" shutdown="SHUTDOWN">
<Service name="Catalina">
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Engine name="Catalina" defaultHost="localhost">
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
</Engine>
</Service>
</Server>
@rponte
Copy link
Author

rponte commented May 23, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment