How to configure SSL for koa2 service

How to configure SSL for koa2 service

I. Introduction

1: SSL Certificate

My domain name is in Tencent Cloud. Every time I create a third-level domain name (assuming it is aaa.jiangw1.com), I will be given a one-year SSL. After the application is successful, I can download the SSL certificate as follows:

You can see that various server files are prepared. The common SSL file in the red circle can be used for the node service.

2: Analysis

aaa.jiangw1.com: Fill in A for record type and server public IP for record value

Two: Code

The following code is limited to the koa2 project, and other node projects are similar.

1: Install dependencies

npm install koa-sslify
npm install koa2-cors

2: app.js added

const app = new Koa();
const cors = require('koa2-cors');
const sslify = require('koa-sslify').default;

// Use SSL
app.use(sslify());

// Cross-domain settings app.use(cors({
  origin: function (ctx) {
    return ctx.header.origin;
  }
}))

3: bin folder modification

Create a new ssl folder and put the .key and .pem files in the SSL certificate.

Modify bin/www as follows:

var https = require("https");
var fs = require("fs");
var path = require("path");
/**
 * Create HTTP server.
 */
// SSL options
var options = {
  key: fs.readFileSync(path.join(__dirname, './ssl/aaa.jiangw1.com.key')),
  cert: fs.readFileSync(path.join(__dirname, './ssl/aaa.jiangw1.com.pem'))
};
// var server = http.createServer(app.callback());
var httpsServer = https.createServer(options, app.callback());
httpsServer.listen(port, (err) => {
  if (err) {
    console.log('server init error', err);
  } else {
    console.log('server running at port :' + port);
  }
});
httpsServer.on('error', onError);
httpsServer.on('listening', onListening);
/**
 * Event listener for HTTP server "listening" events.
 */
function onListening() {
  // var addr = server.address();
  var addr = httpsServer.address();
  var bind = typeof addr === 'string'
    ? 'pipe ' + addr
    : 'port ' + addr.port;
  debug('Listening on ' + bind);
}

4: Start

Local startup:
Open the browser and go to https://localhost:3010. If you can get in, it means the local configuration is successful. You should be prompted that the domain name is invalid.
Server startup:
After uploading the source code, start the service with pm2 and access aaa.jiangw1.com with your browser. If you can access it, it means the local configuration is successful.

Three: Notes

  • Linux server needs to open port 443
  • The ssl certificate file must be configured accurately
  • The port of the node service must be exposed
  • Domain name resolution must be filled in accurately

This is the end of this article about how to configure SSL for koa2 service. For more information about configuring SSL for koa2 service, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of axios carrying cookie configuration (axios+koa)
  • Detailed explanation of Vue SSR (Vue2 + Koa2 + Webpack4) configuration guide
  • Detailed explanation of pm2 configuration based on Vue+Koa
  • Detailed explanation of client (vue framework) and server (koa framework) communication and server cross-domain configuration

<<:  MySQL big data query optimization experience sharing (recommended)

>>:  How to use Spark and Scala to analyze Apache access logs

Recommend

Detailed explanation of the use of ElementUI in Vue

Login + sessionStorage Effect display After a suc...

JavaScript Factory Pattern Explained

Table of contents Simple Factory Factory Method S...

Detailed explanation of using Docker to build externally accessible MySQL

Install MySQL 8.0 docker run -p 63306:3306 -e MYS...

VMware Tools installation and configuration tutorial for Ubuntu

Some time ago, the blogger installed the Ubuntu s...

Analysis of slow insert cases caused by large transactions in MySQL

【question】 The INSERT statement is one of the mos...

Several commonly used single-page application website sharing

CSS3Please Take a look at this website yourself, ...

js to achieve the effect of light switch

This article example shares the specific code of ...

Some references about colors in HTML

In HTML, colors are represented in two ways. One i...

How to use .htaccess to prohibit a certain IP from accessing the website

Preface For cost considerations, most webmasters ...

Common scenarios and avoidance methods for index failure in MySQL

Preface I have read many similar articles before,...

Detailed explanation of HTML tables

Function: data display, table application scenari...

An article to solve the echarts map carousel highlight

Table of contents Preface toDoList just do it Pre...

Summary of the dockerfile-maven-plugin usage guide

Table of contents pom configuration Setting.xml c...