Usually it means there are still some settings wrong with your apache configuration.
Make sure all the port is set :
Listen 10443
But also
NameVirtualHost *:10443
and
<VirtualHost *:10443>
you can find the settings in
/etc/apache2/httpd.conf
or for virtual hosts
/etc/apache2/vhosts.d/0x_yoursite.conf
don't forget to start apache with ssl support
in
/etc/conf.d/apache2
Code: Select all
APACHE2_OPTS=" -D SSL -D YOURSITE"
don't forget to restart apache.
and of course apache needs to be compiled with ssl support. (should be ok)
These are the most common mistakes.
If it still doesn't work, post some of your configuration files.
Then we can check.
You can get more info about your connection, with openssl:
Code: Select all
openssl s_client -state -connect localhost:10443