我想用快速4.x创建一个https服务器。即使谷歌上发现的很多代码都基于快递3.x,我认为我正确地设置了端口。
即使我试图goole,我也不清楚如何生成密钥。没有钥匙,我期待401。
我尝试使用此gist中的脚本。但是我一直在收到错误Error: DEPTH_ZERO_SELF_SIGNED_CERT
。
我希望使用curl
,request和super test对其进行测试。
这就是我的实际情况:
var express = require('express')
, https = require('https')
, fs = require('fs');
var privateKey = fs.readFileSync('./server/server-private-key.pem').toString();
var certificate = fs.readFileSync('./server/server-certificate.pem').toString();
var options = {
key : privateKey
, cert : certificate
}
var app = express();
app.get('/', function(req, res) {
req.client.authorized ?
res.json({"status":"approved"}) :
res.json({"status":"denied"}, 401);
});
server = https.createServer(options,app);
var port = 12345;
server.listen(port, function(){
console.log("Express server listening on port " + port);
});
var https = require('https');
var fs = require('fs');
var options = {
host: 'localhost',
port: 12345,
method: 'GET',
path: '/',
key: fs.readFileSync('./client/client-private-key.pem'),
cert: fs.readFileSync('./client/client-certificate.pem'),
headers: {}
};
var req = https.request(options, function(res) {
console.log('dudee');
console.log(res);
});
req.end();
答案 0 :(得分:0)
使用cURL,您可以使用-k
标志来绕过自签名证书问题。
使用request
,您只需在请求选项中设置rejectUnauthorized: false
。