This document explains how to secure your website with a free VergeCloud SSL certificate, which is valid for a duration of 90 days. After this period, you can renew the certificate without incurring any costs. Follow this guide to activate your SSL certificate.
To obtain this complimentary SSL certificate for your website, log into your VergeCloud user panel, navigate to the CDN section, and locate the HTTPS Settings.
Once HTTPS has been activated, click on the Issue Certificate option to have the VergeCloud Certificate issued for your domain and any subdomains associated with it.
Your request will be processed within a few minutes.
It’s important to note that the HTTPS protocol only functions for records marked with the activated cloud icon.
This certificate is issued through Let’s Encrypt, which enforces a policy stating that the validity period of each certificate is limited to 90 days:
The rationale behind this brief period is that if a certificate is compromised or incorrectly issued, its limited duration minimizes the potential impact and thus bolsters overall internet security.
The renewal process is automated, so users do not need to take any additional steps. Consequently, the short validity period does not introduce any inconvenience for the user.
The VergeCloud SSL Certificate aligns with the Let’s Encrypt policy regarding free SSL certificates, ensuring that the expired certificate will renew automatically.
For instance, a small e-commerce website can utilize the VergeCloud SSL Certificate to ensure secure transactions and protect customer data. By activating HTTPS, users can trust that their sensitive information is safely encrypted during transmission.
The following sections will provide detailed descriptions of the fields and options available in the VergeCloud user interface related to SSL certificate issuance.
curl -X POST "https://api.vergecloud.com/v1/ssl/certificates" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "yourdomain.com",
"subdomains": ["www.yourdomain.com"]
}'
To validate the SSL certificate, you can use tools such as curl
or dig
. Here’s how to test the certificate:
curl -I https://yourdomain.com
This command will show you the HTTP headers, including the SSL certificate details, confirming that the HTTPS is functioning correctly.