重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
使用Express如何实现本地测试HTTPS?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
为称多等地区用户提供了全套网页设计制作服务,及称多网站建设行业解决方案。主营业务为成都做网站、网站设计、外贸营销网站建设、称多网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
生成证书
输入如下命令会在你的当前文件夹生成localhost.key和localhost.cert.
openssl genrsa -out localhost.key 2048 openssl req -new -x509 -key localhost.key -out localhost.cert -days 3650 -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
两个文件.
更新
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
如果不想用密码保护私钥, 加上-nodes.
加上-subj '/CN=localhost'
可以设置certificate的内容. 将其中的localhost
替换成你的域名.
参考:How to create a self-signed certificate with openssl?
代码
想要运行如下代码, 需要先安装包
npm init npm i -S https express
创建文件index.js, 内容如下.
#!/usr/bin/env node var https = require('https'); var fs = require('fs'); var express = require('express'); var host = 'xxx.compute.amazonaws.com'; // Input you domain name here. var options = { key: fs.readFileSync( './' + host + '.key' ), cert: fs.readFileSync( './' + host + '.cert' ), requestCert: false, rejectUnauthorized: false }; var httpApp = express(); var app = express(); app.get('/', function (req, res) { res.send('hi HTTPS'); }); httpApp.get('/', function (req, res) { res.send('hi HTTP'); }); httpApp.listen(80, function () { console.log('http on 80'); }); var server = https.createServer( options, app ); server.listen( 443, function () { console.log( 'https on 443' ); } );
启动服务器
sudo node index.js
访问
浏览器中输入http://xxx.compute.amazonaws.com/
就会以80端口访问HTTP服务器. 显示hi HTTP
.
输入https://xxx.compute.amazonaws.com/
就会以443端口访问HTTPS服务器, 显示hi HTTPS
.
关于使用Express如何实现本地测试HTTPS问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。