Node启动https服务器
程序员文章站
2022-04-12 12:10:07
首先你需要生成https证书,可以去付费的网站购买或者找一些免费的网站,可能会是key或者crt或者pem结尾的。不同格式之间可以通过OpenSSL转换,如: Node原生版本: const https = require('https') const path = require('path') ......
首先你需要生成https证书,可以去付费的网站购买或者找一些免费的网站,可能会是key或者crt或者pem结尾的。不同格式之间可以通过OpenSSL转换,如:
openssl x509 -in mycert.crt -out mycert.pem -outform PEM
Node原生版本:
const https = require('https') const path = require('path') const fs = require('fs') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(__dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(__dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建https服务器实例 const httpsServer = https.createServer(credentials, async (req, res) => { res.writeHead(200) res.end('Hello World!') }) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
express版本
const express = require('express') const path = require('path') const fs = require('fs') const https = require('https') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(__dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(__dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建express实例 const app = express() // 处理请求 app.get('/', async (req, res) => { res.status(200).send('Hello World!') }) // 创建https服务器实例 const httpsServer = https.createServer(credentials, app) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
koa版本
const koa = require('koa') const path = require('path') const fs = require('fs') const https = require('https') // 根据项目的路径导入生成的证书文件 const privateKey = fs.readFileSync(path.join(__dirname, './certificate/private.key'), 'utf8') const certificate = fs.readFileSync(path.join(__dirname, './certificate/certificate.crt'), 'utf8') const credentials = { key: privateKey, cert: certificate, } // 创建koa实例 const app = koa() // 处理请求 app.use(async ctx => { ctx.body = 'Hello World!' }) // 创建https服务器实例 const httpsServer = https.createServer(credentials, app.callback()) // 设置https的访问端口号 const SSLPORT = 443 // 启动服务器,监听对应的端口 httpsServer.listen(SSLPORT, () => { console.log(`HTTPS Server is running on: https://localhost:${SSLPORT}`) })
上一篇: 图片优化
下一篇: 3. HTML中的容器标签
推荐阅读
-
Windows下用Nginx配置https服务器及反向代理的问题
-
node.js请求HTTPS报错:UNABLE_TO_VERIFY_LEAF_SIGNATURE\的解决方法
-
node.js - windows的服务器,一个文件夹最多能放多少个文件而不会影响php/nodejs/java等读取文件的速度?
-
node链接mongodb数据库的方法详解【阿里云服务器环境ubuntu】
-
Node.js之HTTP/2服务器推送的实例分析
-
springboot添加https服务器的方法
-
Android向node.js编写的服务器发送数据并接收请求
-
Spring Web项目spring配置文件随服务器启动时自动加载
-
完美解决node.js中使用https请求报CERT_UNTRUSTED的问题
-
Spring Web项目spring配置文件随服务器启动时自动加载