Subversion Edge SSL

We’ve got Subversion Edge installed successfully and I need to secure it with a SSL certificate rather than the generated one.

I have a cert in the windows cert store, I need to export this to .crt and .key.

Does anyone know what tools I should use to do it, or If i can do it in windows?

is it openssl?

Answer

Yeah, use OpenSSL.

You’ll export a PKCS12 file from windows (make sure you include the private key), and you’ll convert it to X509:

openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
openssl pkcs12 -in cert.pfx -out cert.key -nocerts -nodes

Attribution
Source : Link , Question Author : iain , Answer Author : Shane Madden

Leave a Comment