使用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问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。