Click to See Complete Forum and Search --> : Tomcat listen to port 80


thisObject
05-09-2006, 12:05 AM
Hello,

does anybody has a good reference how to configure tomcat to listen to port 80?

thank you.

TheBearMay
05-09-2006, 06:19 AM
Should only have to edit server.xml with a text editor and change the line that reads something like:


<Http10Connector port="8080" secure="false" maxThreads="100" maxSpareThreads="50" minSpareThreads="10" />
to

<Http10Connector port="80" secure="false" maxThreads="100" maxSpareThreads="50" minSpareThreads="10" />

thisObject
05-09-2006, 12:19 PM
Thank you!