I am having issues configuring SSL w/ Tomcat. I completed the certificate installation and modifications to my server.xml file.
When I access https://mydomain-name.com the page loads fine, and appears to be served securely. However, all of the links on the page have changed from https://mydomain-name.com/mypage to http://mydomain-name.com:443/mypage and when you click any link on the page the server initiates a binary download. Please advise. -- The connecto's from my server.xml are below -- <Connector port="80" address="myip1" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="-1" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" /> <Connector port="80" address="myip2" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="-1" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" /> <Connector port="443" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" redirectPort="-1" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/usr/java/security/my.kdb" keystorePass="xxxxxxx"/>