File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 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([
2929 'of stderr' } ] ,
3030 [ 'NODE_REPL_HISTORY' , { helpText : 'path to the persistent REPL ' +
3131 'history file' } ] ,
32+ [ 'NODE_TLS_REJECT_UNAUTHORIZED' , { helpText : 'set to 0 to disable TLS ' +
33+ 'certificate validation' } ] ,
3234 [ 'NODE_V8_COVERAGE' , { helpText : 'directory to output v8 coverage JSON ' +
3335 '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' } ]
3543] . concat ( hasIntl ? [
3644 [ 'NODE_ICU_DATA' , { helpText : 'data path for ICU (Intl object) data' +
3745 hasSmallICU ? '' : ' (will extend linked-in data)' } ]
You can’t perform that action at this time.
0 commit comments