We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd21d7 commit c9f651bCopy full SHA for c9f651b
1 file changed
example/pass_request_options.js
@@ -7,9 +7,9 @@ process.env.DEBUG = 'node-vault'; // switch on debug mode
7
const vault = require('./../src/index')({
8
requestOptions: {
9
agentOptions: {
10
- cert: 'mycert',
11
- key: 'mykey',
12
- passphrase: 'password',
+ cert: '<path-to-cert>',
+ key: '<path-to-key>',
+ passphrase: '<your-passphrase>',
13
securityOptions: 'SSL_OP_NO_SSLv3',
14
},
15
@@ -21,9 +21,9 @@ const perCallOptions = {
21
'X-HELLO': 'world',
22
23
24
25
26
27
28
29
};
0 commit comments