php - XAMPP - SSL Certificate. Broken HTTPS -


i trying ssl certificate website using xampp. doing tell me using tutorial http://robsnotebook.com/xampp-ssl-encrypt-passwords. reason error https://i.gyazo.com/5da7549ca6baaed8ce96d5c55c9dd7e4.png says "the page insecure (broken https).

this 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             allowoverride             require granted         </directory>     </virtualhost> 

and i've did told me on tutorial, please tell me why error appears..

that ssl certificate has outdated certificate chain called sha1. sha1 announced in late 1995 , not fit current security standards according nist (national institute of standard , technology), browser , certificate authorities have stopped supporting sha1 certificates. suggest ask provider issue ssl certificate latest sha2 encryption accepted of browsers. give reference links guide in detail:

https://blogs.technet.microsoft.com/srd/2013/11/12/security-advisory-2880823-recommendation-to-discontinue-use-of-sha-1/

https://security.googleblog.com/2014/09/gradually-sunsetting-sha-1.html

https://blog.mozilla.org/security/2014/09/23/phasing-out-certificates-with-sha-1-based-signature-algorithms/


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -