there is no need to do anything for this cause your browser knows that it has to send https queries on port 443. the reason that you are getting "page can not be displayed" error might be that tomcat is not starting listening on port 443.
just check by issuing a command "telnet domain.com 443" if a connection is established or not. hitesh ----- Original Message ----- From: "Richard S. Huntrods" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 21, 2001 8:54 AM Subject: HTTP and HTTPS on two servers... > Greetings! > > Well, the more you learn, the more you know how little you know! <G> > > Current status: I have two servers, one with Apache only and one with > Tomcat only. This is for historic reasons of server load, but serves me > very well. > > The Apache server listens only to port 80. All works well. For > example, "http://xx.xx.xx.xx/" calls up the appropriate index.html page. > > The Tomcat server now only listens to port 443 - and responds with SSL > enabled servlets. This also works well. For example: > "https://yy.yy.yy.yy/" calls up a secure index.html file, which starts > the servlets rolling. > > NOW, heres the problem. A router directs port 80 to the Apache server > and port 443 to the Tomcat server. There is a domain name pointing to > the address of the router. If you type "http://domain.com/", the Apache > server properly serves the web page. HOWEVER - if you type > "https://domain.com/", you get the infamous "page cannot be displayed" > message. > > How does one direct "https" inquiries to port 443? I thought this would > work. Who or what interprets "https" as a request on port 443? Must I > configure the port 80 Apache machine to "hear" requests on port 443 and > then relay them to the Tomcat box - and if so, how? (which Apache > config file) > > Thanks very much in advance, > > -Richard > > > > -- > To unsubscribe: <mailto:[EMAIL PROTECTED]> > For additional commands: <mailto:[EMAIL PROTECTED]> > Troubles with the list: <mailto:[EMAIL PROTECTED]> _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
