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
configure SSL in xampp/apache/conf/extra/httpd-vhost.conf
DocumentRoot "C:/xampp/htdocs/myproject/web"
ServerName www.myurl.com
Options All
AllowOverride All
Require all granted
DocumentRoot "C:/xampp/htdocs/myproject/web"
ServerName www.myurl.com
SSLEngine on
SSLCertificateFile "conf/ssl.crt/server.crt"
SSLCertificateKeyFile "conf/ssl.key/server.key"
Options All
AllowOverride All
Require all granted
make sure server.crt & server.key path given properly otherwise this will not work.
don't forget to enable vhost in httpd.conf
# Virtual hosts
Include etc/extra/httpd-vhosts.conf