Is there any particular good reason to change HTTP port from 8080 to 80
and the SSL connector port from 8443 to 443? 
They causing problems for me. Some people are suggesting that we should 
change the ports.

I changed the HTTP Connector port from 8080 to 80
Then I uncommented the SSL Connector section and changed the 
SSL port from 8443 to 443
These are supposed to be well-known ports. But how come after I 
made the changes, Tomcat just refused to 
start? I am on the Win2000 platform.

<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
<Connector 
className="org.apache.coyote.tomcat4.CoyoteConnector"
       port="80" minProcessors="5" maxProcessors="75"
       enableLookups="true" redirectPort="443"
       acceptCount="10" debug="0" connectionTimeout="20000"
       useURIValidationHack="false" />



<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<Connector 
className="org.apache.coyote.tomcat4.CoyoteConnector"
       port="443" minProcessors="5" maxProcessors="75"
       enableLookups="true"
       acceptCount="10" debug="0" scheme="https" secure="true"
       useURIValidationHack="false">
<Factory className=
       "org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
       clientAuth="false" protocol="TLS"/>
</Connector>

 


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to