Enabling SSL with XAMPP

后端 未结 6 766
野的像风
野的像风 2020-11-27 09:56

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

6条回答
  •  无人及你
    2020-11-27 10:12

    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

提交回复
热议问题