SSL Certificate Installation on Node.js

SSL Certificate Installation on Node.js

Once the SSL certificate is issued, it needs to be deployed on the web server to enable HTTPS connections. Following issuance, the Certificate Authority (such as Comodo/Sectigo) will email the certificate files. Additionally, these files will be available for download from your 1Byte account, as described នៅ​ទីនេះ.

This article will cover certificate implementation for Node.js និង Express. You can jump to the appropriate sections from the Table of Contents below.

Currently, the LTS version of Node.js is 10.15.0 and the latest version of Express is 4.16.4. These versions will be used and referred to throughout this guide.

ចំណាំ: This guide also assumes basic understanding of JavaScript since Node.js is a JavaScript runtime environment, as well as basic Node.js and/or Express concepts.

តម្រូវការជាមុន

SSL certificate installation requires the certificate files provided by the Certificate Authority, as well as the matching private key for the SSL certificate.

These files should be uploaded to your server (or wherever the Node.js application is located) before proceeding to the next steps:

  • Certificate (usually a .crt file).
  • CA bundle/chain (usually a .ca-bundle file).
  • Private key (usually a .key file).

The private key is generated prior to certificate activation, typically at the same time as the Certificate Signing Request (CSR). Even if you have the private key, it is worth checking that it is the correct one by matching it with your SSL certificate in ឧបករណ៍នេះ.

សូម​ចំណាំ: While the files can be placed into any directory, make sure the directory that holds the private key is not public. The private key is meant to be stored securely on the server without any public access.

In case the private key is lost or there is no way to retrieve it, you can always reissue your certificate with a new CSR and key គូ។

សំខាន់: When downloading certificate files from your 1Byte account, you will also receive a .p7b (PKCS#7 certificate) file. This file is not the private key and will not be needed for installation.

Importing certificate files into your application

Node.js SSL/TLS capabilities are based on the OpenSSL library, so it’s flexible in the way it accepts SSL certificate files. The files can be read as buffers or as text (specifying the UTF-8 encoding) using the FS (File System) module, or can be simply provided as strings with the certificate code in the PEM format.

In most cases, the most straightforward way is preferred, which is reading the SSL certificate files from the file system as shown below:

const fs = require(‘fs’);const cert = fs.readFileSync(‘./path/to/the/cert.crt’);
const ca = fs.readFileSync(‘./path/to/the/ca.crt’);
const key = fs.readFileSync(‘./path/to/the/private.key’);

The paths to these files can be relative or absolute. Feel free to use the ផ្លូវ module to create the paths instead of using simple strings.

Below is an example setup when the files are being loaded:

ក្នុងឧទាហរណ៍នេះ SSL directory was created specifically for SSL-related files, and the files are read from it. The cert, ca and key constants hold the respective representations of the SSL certificate, CA bundle, and private key files.

សំខាន់: Several certificates in a single file (which is typically needed for the CA bundle file) are supported from Node.js version 5.2.0. If you are using an earlier version of Node.js, you will need to provide an array of CA certificates as shown below.

The version of Node.js you have installed can be checked by running ថ្នាំង - v.

If you are using Node.js 5.2.0 or higher, you can skip this section and jump straight to the heading HTTPS on Node.js or HTTPS on Express នៅក្នុងអត្ថបទនេះ។

In case you are using a version of Node.js prior to 5.2.0, you can follow the instructions below to split the CA bundle into separate SSL certificates.

You can manually separate the .ca-bundle file into separate certificate files using any text editor and load them into an array. Or, you can separate the .ca-bundle file within your app. Examples of both are provided below:

Using multiple CA certificate files:

const ca = [
  fs.readFileSync(‘./ssl/CAcert1.crt’),
  fs.readFileSync(‘./ssl/CAcert2.crt’)
];

If you separate the files manually, make sure to provide them in the same order they are in the .ca-bundle file.

Separating the file within the app:

const caBundle = fs.readFileSync(‘./ssl/example.ca-bundle’, {encoding:’utf8′});
const ca = caBundle.split(‘—–END CERTIFICATE—–\r\n’) .map(cert => cert +’—–END CERTIFICATE—–\r\n’);
// We had to remove one extra item that is present due to
// an extra line at the end of the file.
// This may or may not be needed depending on the formatting
// of your .ca-bundle file.
ca.pop();
console.log(ca);

The result of running the above code should be an array of certificates as shown below:

HTTPS on Node.js

Creating an HTTPS server

The HTTPS server is created using the https.createServer() method, which takes in an options object as its first argument, and the request listener callback as the second one. The options object should contain the following properties:

  • cert – the certificate
  • ca – the CA bundle (chain) provided in one file or as an array
  • key – the private key

Additional options can be added to the object if needed.

សូម​ចំណាំ: If you have the certificate in .pfx (PKCS#12) format, you can use it by providing an options object with the pfx property containing the pfx file, and a passphrase property if needed.

As always, you can create the object before calling the method, or you can pass an anonymous object with the required properties, shown below:

let options = {
  cert: cert, // fs.readFileSync(‘./ssl/example.crt’);
  ca: ca, // fs.readFileSync(‘./ssl/example.ca-bundle’);
  key: key // fs.readFileSync(‘./ssl/example.key’);
};

// also okay: https.createServer({cert, ca, key}, (req, res) => { …
const httpsServer = https.createServer(options, (req, res) => {
  res.statusCode = 200;
  res.setHeader(‘Content-Type’, ‘text/html’);
  res.end(“<h1>HTTPS server running</h1>”);
});

In the end, the boilerplate server code should look something like this:

Here we import the certificate files into an object on lines 7-11, then pass this object to the createServer method on line 13 which creates the HTTPS server, and finally call the listen() method on line 19 to start the server.

Make sure to restart your Node.js application if it was already running to apply the changes. To start the application, you can simply run node .js in the directory with your app, where .js is your application startup file.

This completes the setup! You can use the following tool to check the SSL certificate installation by entering the corresponding hostname and port you are using: https://decoder.link

Redirecting to HTTPS

To redirect HTTP requests to HTTPS, you will also need to set up an HTTP server with the របស់ HTTP ម៉ូឌុល។

In essence, redirecting an HTTP request to another URL requires two things: the corresponding response code (301 or 302) and the “Location” HTTP header with the URL that should be used instead.

Below you can find an example of how such an HTTP server can be set up:

const http = require(‘http’);
const hostname = ‘exampledomain.com’;
const httpServer = http.createServer((req, res) => {
  res.statusCode = 301;
  res.setHeader(‘Location’, `https://${hostname}${req.url}`);
  res.end(); // make sure to call send() or end() to send the response
});
httpServer.listen(80);

In the above example, we also pass the requested URL from req.url.

If you were serving all content via HTTP before and would like to switch to HTTPS and set up the redirect, the easiest way should be just changing your HTTP server to an HTTPS server, and creating an additional HTTP server that will redirect the requests.

Below you can see a request made to such an HTTP server with a custom URL:

And then correctly passed to the HTTPS server:

HTTPS on Express

Setting up an HTTPS application with Express

Using HTTPS with Express requires creating an HTTPS server with the HTTPS module from Node.js. Your Express app should be passed as a parameter to the https.createServer() វិធីសាស្រ្ត:

const https = require(‘https’);
const express = require('express');

// const httpsOptions = {cert, ca, key};

const app = express();
const httpsServer = https.createServer(httpsOptions, app);

// Your app code here

httpsServer.listen(443, ‘exampledomain.com’);

The httpsOptions parameter is an object identical to the one used in this section of the guide: Creating an HTTPS server in this article.

An example of the full code to create an HTTPS Express app is shown below:

At this point, you will have an Express app that is accessible via HTTPS. Note that the aforementioned example application will listen only to HTTPS requests on the specified port. If you also need your app to listen to HTTP requests, you will need to set up an HTTP server in a similar manner using http.createServer() ពីទំព័រ របស់ HTTP ម៉ូឌុល។

Make sure to restart your application if it was already running to apply the changes. To restart the application, you can simply run node .js in the directory with your app.

This tool can be used to check SSL certificate installation: https://decoder.link

Redirecting to HTTPS with Express

To redirect any HTTP requests to HTTPS, you will also need to have an HTTP server running that can listen to HTTP requests. The server should be created using the របស់ HTTP module, and passed your Express app as a parameter in the same way the app was passed for the HTTPS server.

To create a redirect to HTTPS, you can set up a middleware function that will check if a request is made via HTTP and redirect it to HTTPS if it is. Below is an example of such middleware using the built-in បញ្ជូនបន្ត() method from Express:

app.use((req, res, next) => {
  if(req.protocol === ‘http’) {
    res.redirect(301, `https://${req.headers.host}${req.url}`);
  }
  next();
});

Below is an example of a full Express app code that uses HTTPS and redirects all HTTP requests to HTTPS:

In the code above, we set up our Express app on line 16, then created HTTP and HTTPS servers on lines 17 and 18. Lines 20-25 create the middleware that redirects the HTTP requests to HTTPS. Lastly, as an example, we set up some server code on lines 30-35, and start the HTTP and HTTPS servers by calling their listen() methods on lines 37 and 38.

Below you can see the screenshots that illustrate the HTTP requests for both static files and custom URLs, which are redirected correctly.

Static files:

URLs ផ្ទាល់ខ្លួន៖

សូម​ចំណាំ: If Node.js was installed as a virtual environment on 1Byte shared hosting – it’s not possible to install an SSL certificate on it, instead the certificate can be easily installed via cPanel.