UNPKG

489 BJavaScriptView Raw
1module.exports = {
2 // specify additional options here, especially http(s)
3 // see https://github.com/request/request#readme for specifics
4 ca: [ /* strings or binaries */],
5 cert: [ /* strings or binaries */],
6 key: [ /* strings or binaries */],
7 passphrase: 'yourpassphrase',
8 auth: {
9 user: 'yourusername',
10 pass: 'yourpassword'
11 },
12 httpSignature: {
13 keyId: 'keyId',
14 key: 'yourkey'
15 },
16 strictSSL: false,
17 followAllRedirects: false,
18 followRedirect: false
19};