File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,17 @@ const envVars = new Map([
29
29
'of stderr' } ] ,
30
30
[ 'NODE_REPL_HISTORY' , { helpText : 'path to the persistent REPL ' +
31
31
'history file' } ] ,
32
+ [ 'NODE_TLS_REJECT_UNAUTHORIZED' , { helpText : 'set to 0 to disable TLS ' +
33
+ 'certificate validation' } ] ,
32
34
[ 'NODE_V8_COVERAGE' , { helpText : 'directory to output v8 coverage JSON ' +
33
35
'to' } ] ,
34
- [ 'OPENSSL_CONF' , { helpText : 'load OpenSSL configuration from file' } ]
36
+ [ 'OPENSSL_CONF' , { helpText : 'load OpenSSL configuration from file' } ] ,
37
+ [ 'SSL_CERT_DIR' , { helpText : 'sets OpenSSL\'s directory of trusted ' +
38
+ 'certificates when used in conjunction with --use-openssl-ca' } ] ,
39
+ [ 'SSL_CERT_FILE' , { helpText : 'sets OpenSSL\'s trusted certificate file ' +
40
+ 'when used in conjunction with --use-openssl-ca' } ] ,
41
+ [ 'UV_THREADPOOL_SIZE' , { helpText : 'sets the number of threads used in ' +
42
+ 'libuv\'s threadpool' } ]
35
43
] . concat ( hasIntl ? [
36
44
[ 'NODE_ICU_DATA' , { helpText : 'data path for ICU (Intl object) data' +
37
45
hasSmallICU ? '' : ' (will extend linked-in data)' } ]
You can’t perform that action at this time.
0 commit comments