UNPKG

488 BJavaScriptView Raw
1module.exports = {
2 // specify additional options here, especially http(s)
3 // see https://nodejs.org/api/tls.html#tls_tls_connect_options_callback for specifics
4 ca: [
5 /* strings or binaries */
6 ],
7 cert: [
8 /* strings or binaries */
9 ],
10 key: [
11 /* strings or binaries */
12 ],
13 passphrase: 'yourpassphrase',
14 auth: {
15 user: 'yourusername',
16 pass: 'yourpassword',
17 },
18 strictSSL: false,
19 followRedirect: false,
20 headers: {
21 'x-custom': 'headers',
22 },
23};