How to Create SSL Certificate
Aim of this article | This section shows how to create a new SSL certificate. |
---|---|
Related sections | Certificates (Reference Manual) |
Required permissions | Integration Instance - Edit |
Steps:
Go to Account > Integrations > specific integration > Certificates.
Click New Certificate.
Enter its name and type – Certificate, Key or Combined (both Certificate and Key in one body).
Specify the Body:
The certificate body must be in X.509 .PEM format (encoded using base64), enclosed between the following lines:
Option 1-----BEGIN CERTIFICATE----- -----END CERTIFICATE-----
Option 2
-----BEGIN KEY----- -----END KEY-----
Â
Optional, but recommended: Switch Not Encrypted to Encrypted to encrypt the certificate.
Click Deploy.
To download the certificate you can use
openssl
:echo | openssl s_client -servername www.example.com -connect www.example.com:443 |sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > certificate.crt
Â
PlatformManager version 1.75.0