Ubuntu – SSL Connection to Apache web server

Apache2connectionserverssl

I follow up on setting up SSL connection to my Apache2
It works well when I access my website from a local IP address
but if I use a Dynamic DNS service with HTTPS in the beginning than
I doesn't get to the website but actually can see my website folders.

What have I done wrong ?

Best Answer

Is the port 443 in your router redirected to the host you have the server running on? If not, that could be the problem.

Try to connect to your server using the port directly:

https://yourpublicipaddress:443

If it doesn't work, you'll need to forward all the connections to the 443 port in the router to the local IP where the server is.

Related Question