I\'ve been following this guide as much as I could http://robsnotebook.com/xampp-ssl-encrypt-passwords .
However whenever I browse to a page starting with https the
You can also configure your SSL in xampp/apache/conf/extra/httpd-vhost.conf like this:
DocumentRoot C:/xampp/htdocs/yourProject
ServerName yourProject.whatever
SSLEngine on
SSLCertificateFile "conf/ssl.crt/server.crt"
SSLCertificateKeyFile "conf/ssl.key/server.key"
I guess, it's better not change it in the httpd-ssl.conf if you have more than one project and you need SSL on more than one of them