使用node.js配置https协议服务 - 前端笔记-// 1. 引入 https 模块 const https = require('https'); //2.引入 fs模块 读取文件的 const fs = re...

学习笔记

点滴记忆
回忆过往
首页>> web后端 >>使用node.js配置https协议服务 - 前端笔记


// 1. 引入 https 模块  
const https = require('https'); 
//2.引入 fs模块  读取文件的
const fs = require('fs');
//3.创建一个 常量做容器装  key  和 pem  https证书的  和 密钥的
const options = {
cert: fs.readFileSync('./full_chain.pem'),
key: fs.readFileSync('./private.key')
}

//4.在通过 https.createServer   监听 443端口  (https 协议都是 443端口)
https.createServer(options, app).listen(443);

×

感谢您的支持,我们会一直保持!

扫码支持
请土豪扫码随意打赏

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

打赏作者
版权所有,转载注意明处:前端笔记 » 使用node.js配置https协议服务

发表评论

路人甲 表情
Ctrl+Enter快速提交

网友评论(0)