Installing .pem certificate generate from win-acme to xampp

I successfully get 4 .pem from win-acme.

How to install .pem on xampp?

I'm using Windows 10 or Windows Server 2008 R2.

Thank you.

I already make vhost 443 on httpd.ssl.conf but when I save edited file my apache service not running and get error :

Error: Apache shutdown unexpectedly.
09.33.26 [Apache] This may be due to a blocked port, missing dependencies,
09.33.26 [Apache] improper privileges, a crash, or a shutdown by another method.
09.33.26 [Apache] Press the Logs button to view error logs and check
09.33.26 [Apache] the Windows Event Viewer for more clues
09.33.26 [Apache] If you need more help, copy and post this
09.33.26 [Apache] entire log window on the forums

Define CERTROOT "C:/apache-certs"
Define SITEROOT "C:/htdocs/www"
....
<VirtualHost *:443>
    ServerName www.example.com
    DocumentRoot "${SITEROOT}/example.com"
....
    SSLEngine on
    SSLCertificateFile "${CERTROOT}/example.com-chain.pem"
    SSLCertificateKeyFile "${CERTROOT}/example.com-key.pem"
</VirtualHost>

I edited this vhost setting from win-acme web, and set DocumentRoot and certificate path to where I saved on my computer.

But still get error like my above post,

Thankyou

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.