微信扫一扫看面试题

关注面试题库

Nodejs配置Https服务

原文地址

let express = require("express");
let http = require("http");
let https = require("https");
let fs = require("fs");
// Configuare https
const httpsOption = {
    key : fs.readFileSync("./https/xxxxxxxxxxxx.key"),
    cert: fs.readFileSync("./https/xxxxxxxxxxxx.pem")
}
// Create service
let app = express();
http.createServer(app).listen(80);
https.createServer(httpsOption, app).listen(443);

原文地址

在这里插入图片描述在这里插入图片描述

posted @ 2022-07-23 10:03  web前端面试小助手  阅读(184)  评论(0)    收藏  举报