Hey I'm trying to transfer a SSL certificate over to a Linux server with OpenSSL and I have all of the following steps in this article done, but the last two steps listed below the link. I'm not sure where to find the [sslcert].key file or the [sslcert].cert file they're referring to. Also is there a particular directory I should have these files in?
Thanks!
Inside your key.pem file you will have your private key.
-----BEGIN RSA PRIVATE KEY-----
[Private key will be here]
-----BEGIN RSA PRIVATE KEY-----
Copy this segment into your [sslcert].key file
Inside your cert.pem file will be your certificate.
-----BEGIN CERTIFICATE-----
[SSL certificate will be here]
-----END CERTIFICATE-----
Copy this segment into your [sslcert].cert file
Thanks!
Inside your key.pem file you will have your private key.
-----BEGIN RSA PRIVATE KEY-----
[Private key will be here]
-----BEGIN RSA PRIVATE KEY-----
Copy this segment into your [sslcert].key file
Inside your cert.pem file will be your certificate.
-----BEGIN CERTIFICATE-----
[SSL certificate will be here]
-----END CERTIFICATE-----
Copy this segment into your [sslcert].cert file