Created
May 23, 2013 19:17
-
-
Save rponte/5638686 to your computer and use it in GitHub Desktop.
Simple Tomcat minimal server.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More informations,
http://www.javalobby.org/java/forums/t18141.html