使用Express如何实现本地测试HTTPS

使用Express如何实现本地测试HTTPS?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

生成证书

使用Express如何实现本地测试HTTPS

输入如下命令会在你的当前文件夹生成localhost.key和localhost.cert.

opensslgenrsa-outlocalhost.key2048
opensslreq-new-x509-keylocalhost.key-outlocalhost.cert-days3650-subj/CN=localhost

其中localhost为域名. 想要换成别的域名就直接把上面的所有localhost替换成你的域名.

以我为例, 我的虚拟机的域名是xxx.compute.amazonaws.com, 就以这个域名替换上面所有的localhost, 会生成, ec2-34-220-96-9.us-west-2.compute.amazonaws.com.key ec2-34-220-96-9.us-west-2.compute.amazonaws.com.cert两个文件.

更新

opensslreq-x509-newkeyrsa:4096-keyoutkey.pem-outcert.pem-days365

如果不想用密码保护私钥, 加上-nodes.

加上-subj '/CN=localhost'可以设置certificate的内容. 将其中的localhost替换成你的域名.

参考:How to create a self-signed certificate with openssl?

代码

想要运行如下代码, 需要先安装包

npminit
npmi-Shttpsexpress

创建文件index.js, 内容如下.

#!/usr/bin/envnode

varhttps=require('https');
varfs=require('fs');
varexpress=require('express');

varhost='xxx.compute.amazonaws.com';//Inputyoudomainnamehere.
varoptions={
key:fs.readFileSync('./'+host+'.key'),
cert:fs.readFileSync('./'+host+'.cert'),
requestCert:false,
rejectUnauthorized:false
};

varhttpApp=express();
varapp=express();
app.get('/',function(req,res){
res.send('hiHTTPS');
});
httpApp.get('/',function(req,res){
res.send('hiHTTP');
});
httpApp.listen(80,function(){
console.log('httpon80');
});
varserver=https.createServer(options,app);

server.listen(443,function(){
console.log('httpson443');
});

启动服务器

sudonodeindex.js

访问

浏览器中输入http://xxx.compute.amazonaws.com/就会以80端口访问HTTP服务器. 显示hi HTTP.

输入https://xxx.compute.amazonaws.com/就会以443端口访问HTTPS服务器, 显示hi HTTPS.

关于使用Express如何实现本地测试HTTPS问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。

发布于 2021-04-08 13:37:57
收藏
分享
海报
0 条评论
171
上一篇:使用Django怎么实现一个登录随机验证码功能 下一篇:使用Python怎么对json文件进行读写
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码