I\'m trying to configure my home server to accept SSL Connection on port 443.
I\'ve www.mydomain.com domain, I\'ve just linked Apache2 and Tomcat, using mod_jk, now I wi
You've configured mod_jk in your virtual hosts for plain HTTP requests (VirtualHost *:80). You need to configure these Jk* options in the HTTPS virtual hosts too (VirtualHost *:443), where you have configured your SSL settings.
VirtualHost *:80
Jk*
VirtualHost *:443