I was trying to get a SSL Certificate for my website using XAMPP. I am doing exactly what they tell me to do using this tutorial http://robsnotebook.com/xampp-ssl-encrypt-passwords. For some reason I get this error https://i.gyazo.com/5da7549ca6baaed8ce96d5c55c9dd7e4.png It says that "The page is insecure (Broken https).
This is my httpd-vhosts.conf
<VirtualHost *:443>
DocumentRoot "C:\Users\Administrator\Desktop\xampp\htdocs"
ServerName myproject
SSLEngine on
SSLCertificateFile "conf/ssl.crt/server.crt"
SSLCertificateKeyFile "conf/ssl.key/server.key"
<Directory "C:\Users\Administrator\Desktop\xampp\htdocs">
Options All
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
And I've did everything they told me to do on the tutorial, please tell me why this error appears..