How to Use a Custom SSL Certificate on Hypernode
You can add an SSL certificate from another certificate authority to your Hypernode account via the Control Panel. This is useful when you already have a certificate that was not ordered through Hypernode.
The Control Panel requires the certificate files in PEM format:
Private Key
Certificate
Certificate Authority
Add a Custom SSL Certificate to Your Account
Log into your Control Panel.
Select SSL in the sidebar on the left.
To add a new SSL certificate, click the Add SSL button on the right.
Click Add third party SSL certificate.
Fill in the Private Key, Certificate and Certificate Authority. Use .PEM files only.
Click Apply your SSL certificate.
Click Details and then (Un)link to Hypernodes to select one or more Hypernodes to link the certificate to.
Add a Custom SSL Certificate Directly to a Hypernode
You can also add a custom SSL certificate directly to a Hypernode. Follow the steps below to do so:
Log into your Control Panel.
Select the specific Hypernode from the overview.
Click on your Hypernode and select SSL: under Services.
To add a new SSL certificate, click the Add SSL button on the right.
Click Add third party SSL certificate.
Fill in the Private Key, Certificate and Certificate Authority. Use .PEM files only.
Click Apply your SSL certificate.
Link a Custom SSL Certificate to a Hypernode
If you already have a custom SSL certificate added to your account, you can link it to a specific Hypernode by following these steps:
Log into your Control Panel.
Select the specific Hypernode from the overview.
Click on your Hypernode and select SSL: under Services.
Here you’ll see an overview of the available SSL certificates. Click Details and then (Un)link to Hypernodes to link one or more Hypernodes to link the certificate to.
Check Which Custom SSL Certificates Are Linked to Your Hypernode
If you want to check which custom SSL certificates are linked to a specific Hypernode, you can do so by following these steps:
Log into your Control Panel.
Select the Hypernode from the overview.
Click on your Hypernode and select SSL: under Services.
You will now see an overview of all linked SSL certificates.
Click Details to go the detail page. You can unlink the domain or delete the SSL certificate from here.
Use a Cloudflare Origin CA Certificate
Cloudflare Origin CA certificates encrypt traffic between Cloudflare and your Hypernode. They are useful when your domain uses Cloudflare proxying and you want to use Cloudflare SSL/TLS mode Full (Strict). For more information, see the official Cloudflare Origin CA documentation.
Warning
Cloudflare Origin CA certificates are only trusted by Cloudflare. Site visitors can get certificate warnings if they connect directly to your Hypernode, if you pause Cloudflare, or if you turn off proxying for a hostname that uses this certificate.
Create the Certificate in Cloudflare
Log into the Cloudflare dashboard.
Select your account and domain.
Go to SSL/TLS > Origin Server.
On the Origin Certificates tab, click Create Certificate.
Choose Generate private key and CSR with Cloudflare.
Choose ECC as the private key type. Hypernode’s Nginx and OpenSSL versions support ECC certificates, and ECC keeps the certificate and TLS handshake smaller. Use RSA if you specifically need RSA compatibility.
Add the hostnames the certificate should cover, such as
example.com,www.example.com, or*.example.com.Choose the certificate validity period.
Click Create.
Choose PEM as the key format.
Copy the Origin Certificate and Private Key before closing the screen. Cloudflare does not show the private key again later.
Add the Cloudflare Certificate to Hypernode
Add the certificate as a custom SSL certificate in the Hypernode Control Panel. Use this field mapping:
Hypernode field |
Cloudflare value |
|---|---|
Private Key |
The Private Key shown when you created the Origin CA certificate |
Certificate |
The Origin Certificate shown when you created the Origin CA certificate |
Certificate Authority |
The Cloudflare Origin CA root certificate in PEM format |
Use the Cloudflare Origin CA root certificate that matches the certificate type you created:
Cloudflare Origin ECC PEM for ECC certificates.
Cloudflare Origin RSA PEM for RSA certificates.
After applying the SSL certificate, link it to the correct Hypernode. If the certificate was added directly from the Hypernode SSL page, it is already linked to that Hypernode.
Set Cloudflare to Full (Strict)
After the certificate is installed and linked in Hypernode, update the SSL/TLS encryption mode in Cloudflare:
Note
Only set Full (Strict) globally if all Cloudflare-proxied origin hosts in the zone use a valid Origin CA or publicly trusted certificate. If only this Hypernode uses the Origin CA certificate, configure Full (Strict) for the relevant hostname in Cloudflare.
Log into the Cloudflare dashboard.
Select your account and domain.
Go to SSL/TLS > Overview.
Set SSL/TLS encryption mode to Full (Strict).
Test the website through the Cloudflare-proxied hostname after changing this setting.
How to Generate a Certificate Signing Request on Nginx Using OpenSSL
Log into your Hypernode with SSH and run the following command:
openssl req -new -newkey rsa:2048 -nodes -keyout myserver.key -out myserver.csr
Note
Replace myserver with the domain name you’re securing. For example, if your domain name is mydomain.com, use mydomain.key and mydomain.csr.
This command creates two files: the private key file for decrypting the SSL certificate and the certificate signing request (CSR) file used to apply for your SSL certificate.
Enter the requested information:
Common Name (CN): The fully-qualified domain name, or URL, you want to secure.
Organization (O): The legally registered name for your business. If you are enrolling as an individual, enter the certificate requestor’s name.
Organization Unit (OU): If applicable, enter the DBA (Doing Business As) name.
City or Locality (L): Name of the city where your organization is registered or located. Do not abbreviate.
State or Province (S): Name of the state or province where your organization is located. Do not abbreviate.
Country (C): The two-letter International Organization for Standardization (ISO) country code for where your organization is legally registered.
If you are requesting a wildcard certificate, add an asterisk (*) to the left of the common name where you want the wildcard, for example *.mydomain.com. Do not use the asterisk in the private key or CSR file names, because * is a special character in shells. Use file names like wildcard.mydomain.com.key and wildcard.mydomain.com.csr instead.
If you do not want to enter a password for this SSL certificate, leave the passphrase field blank.
Your .csr file will then be created. Open the CSR file with a text editor and copy and paste it, including the BEGIN and END tags, into the certificate order form.
Save the generated .key file. You will need it when installing your SSL certificate in Nginx.