Search results

  1. H

    Problem with Certificate on Https

    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...
Top