We have a VirtualHost configured likeso:
<VirtualHost *:4567>
SSLEngine on
<Directory "/var/www/html/proso/html">
AllowOverride All
</Directory>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/path/to/site
</VirtualHost>
If we go to http://site:4567
everything works. If we use https://site:4567
we get this site can’t provide a secure connection
.
After reading this answer and following each step carefully, there is still an error. How do you ssl enable the port with a VirtualHost for both secure and normal communication?