// 1. 引入 https 模块
const https = require('https');
//2.引入 fs模块 读取文件的
//2.引入 fs模块 读取文件的
const fs = require('fs');
//3.创建一个 常量做容器装 key 和 pem https证书的 和 密钥的
//3.创建一个 常量做容器装 key 和 pem https证书的 和 密钥的
const options = {
cert: fs.readFileSync('./full_chain.pem'),
key: fs.readFileSync('./private.key')
}
//4.在通过 https.createServer 监听 443端口 (https 协议都是 443端口)
//4.在通过 https.createServer 监听 443端口 (https 协议都是 443端口)
https.createServer(options, app).listen(443);
发表评论