使用 node.js 搭建一个 本地 https 服务
2022/9/16 14:17:10
本文主要是介绍使用 node.js 搭建一个 本地 https 服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
使用 git客户端msysgit , 其中已包含了 openssl 程序
# 生成私钥 key 文件
openssl genrsa -out privatekey.pem 1024
# 通过私钥生成CSR证书签名
openssl req -new -key privatekey.pem -out certrequest.csr
# 通过私钥和证书签名生成证书文件
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem
有了证书之后,开始创建服务
const https = require("https"); const http = require("http"); const fs = require("fs") // 创建 http 服务 const httpServer = http.createServer((req, res) => { res.writeHead(200); res.end("this is a http server") }) httpServer.listen(3000, function() { console.log("http server is running on: http://localhost:3000"); }) // 创建 https 服务 const privateKey = fs.readFileSync('./privateKey.pem') const certificate = fs.readFileSync('./certificate.pem') const httpsServer = https.createServer({ key: privateKey, cert: certificate }, (req, res) => { res.writeHead(200); res.end("this is a https server") }) httpsServer.listen(3006, function() { console.log("https server is running on https://localhost:3006") })
完成,打开浏览器访问 localhost:3000, https://localhost:3006 即可。
这篇关于使用 node.js 搭建一个 本地 https 服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-25Vue3学习:从入门到初步掌握
- 2024-12-25Vue3入门:新手必读的简单教程
- 2024-12-23【JS逆向百例】爱疯官网登录逆向分析
- 2024-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程