1
0

fixed error in README

Esse commit está contido em:
AJ ONeal 2014-03-07 17:22:40 -07:00
commit a0f0b1ddfa

Ver arquivo

@ -23,12 +23,25 @@ var https = require('https')
cas = https.globalAgent.options.ca = https.globalAgent.options.ca || [];
cas = cas.concat(require('ssl-root-cas').getOnce());
cas = cas.concat(require('ssl-root-cas'));
cas.push(fs.readFileSync(path.join(__dirname, 'ssl', '01-cheap-ssl-intermediary-a.pem')));
cas.push(fs.readFileSync(path.join(__dirname, 'ssl', '02-cheap-ssl-intermediary-b.pem')));
cas.push(fs.readFileSync(path.join(__dirname, 'ssl', '03-cheap-ssl-site.pem')));
```
For the sake of version consistency this package ships with the CA certs that were
available at the time it was published.
If you want the latest certificates (downloaded as part of the postinstall process),
you can require those instead like so:
```
, latest = require('ssl-root-cas/latest')
;
cas = cas.concat(latest);
```
BAD IDEAS
===