I have not defined any VirtualHost. All I am uing is : # Configure mod_jk for basic operation
<IfModule mod_jk.c> JkWorkersFile "C:/Program Files/Apache Group/Apache2/conf/workers.properties" JkLogFile "C:/Program Files/Apache Group/Apache2/logs/mod_jk.log" JkLogLevel debug JkMount /*.jsp ajp13 JkMount /*.jsp/* ajp13 JkMount /servlet/* ajp13 JkMount /Windchill/servlet/* ajp13 </IfModule> -----Original Message----- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 12:38 AM To: [EMAIL PROTECTED] Subject: Re: Port 443 request not forwarded to Tomcat from Apache The most common reason is that you have your JkMount statements nested in the VirtualHost for port 80. If so, then you need to copy them to the VirtualHost for port 443 as well. Of course, without knowing your configuration, all I can do is guess ;-). "Ramanan Ramadoss" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I am trying to configure apache 2.0.46 to accept request on port 443 > and route it to tomcat 4.1.27 using mod_jk. I am not using ssl yet, but it > looks like calls are not forwarded to Tomcat from Apache. I am following > step 1 of the following URL. > http://raibledesigns.com/tomcat/ssl-howto.html > > http:localhost:443 works but http:localhost:443/application where the > application is served by Tomcat does not work. > Both of the above url work if I use port 80 instead of 443. > > Any help or pointers is greatly appreciated. > > Thanks > Ramanan Ramadoss --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
