How to create a digital certificate

If your application runs on HTTPS, you’ll need to register a certificate with Azion Digital Certificates. A TLS digital certificate confirms a website’s identity and protects data transfers. It secures financial transactions and any exchange of sensitive information, from login credentials to personal data.

You can also request that a Let’s Encrypt certificate be generated for your domain through Azion. The process for requesting a Let’s Encrypt certificate is different from custom certificates. See how to generate a Let’s Encrypt certificate for more information.


Option 1: Upload custom certificate

  1. Access Azion Console > Digital Certificates.
  2. Click the + Digital Certificate button.
  3. Name your certificate.
  4. Select the Import a server certificate option.
  5. In the field Certificate, paste the certificate.
  6. In the Private Key field, paste the private key.
  7. Click the Save button.

Option 2: Upload Trusted CA for mTLS

  1. Access Azion Console > Digital Certificates.
  2. Click the + Digital Certificate button.
  3. Name your certificate.
  4. Select the Import a Trusted CA certificate option.
  5. In the field Certificate, paste the certificate.
  6. Click the Save button.

Associate certificate to domain

Now you need to associate your certificate to an Azion domain:

  1. On the upper-left corner of the page, open the Products menu, represented by three horizontal lines > Domains.
  2. Select the desired domain.
  3. In Digital Certificate, select the certificate you created in the previous steps.
  4. Make sure the CNAMEs listed in the CNAME field are the same as the issued certificate for your custom domain.
  5. Click the Save button.
  6. Wait a couple of minutes for the changes to propagate.

You can access your HTTPS application and check the security settings using your browser or run the following OpenSSL command, replacing yourdomain.com with one of the CNAMEs of the domain:

openssl s_client -showcerts -connect yourdomain.com:443

Contributors