Chcę utworzyć serwer https dla mojego hosta lokalnego.
Dokumentacja węzła JS dostarcza rozwiązania z pudełka, ale mam pewne zamieszanie z nim. PrzykładUtwórz serwer HTTPS z węzłem js
var https = require('https');
var fs = require('fs');
var options = {
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};
https.createServer(options, function (req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(8000);
Albo
var options = {
pfx: fs.readFileSync('server.pfx')
};
Oto jak bym dostać klucz, cert lub pfx dla mojego localhost?