1
下記のような単純なnodejs httpサーバーと、letsencryptの証明書が/etc/letsencrypt
に用意されているとします。 httpsに変更して証明書を追加するにはどうすればいいですか?letsencrypt証明書をnodejs httpサーバーに追加していますか?
var http = require('http');
var app = require('express')();
app.get('/', function (req, res) {
res.send('Hello World!');
});
http.createServer(app).listen(3000, function() {
console.log('Started!');
});
何key.pemとなしのcert.pemファイルはありません...他のフォルダ内のいくつかのPEMファイルはもあります。 – vidstige
@vidstige、証明書のファイルは何ですか? –
@vidstigeの場合、 'letsencrypt'を正しく使って証明書を生成していないでしょう。 [これをチェックしてください](https://gist.github.com/davestevens/c9e437afbb41c1d5c3ab) –