Locating SSL certificate, key and CA on server
- by jovan
Disclaimer: you don't need to know Node to answer this question but it would help.
I have a Node server and I need to make it work with HTTPS. As I researched around the internet, I found that I have to do something like this:
var fs = require('fs');
var credentials = {
key: fs.readFileSync('path/to/ssl/private-key'),
cert:…