I have a nodeJs app, and have this code on localhost:
const options = {
key: fs.readFileSync('privkey.pem'),
cert: fs.readFileSync('cert.pem'),
rejectUnauthorized: false,
requestCert: true,
};
this.server = https.createServer(options, app);
on api I...