We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
var httpsAgent = new https.Agent({ ca: fs.readFileSync('etc/ssl/certs/root-ca.crt') , rejectUnauthorized: true }) https.request( { agent: httpsAgent , hostname: 'example.com' , method: 'GET' , path: '/' } , function (response) { // ... } )