File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -1312,6 +1312,10 @@ options property is explicitly specified for a TLS or HTTPS client or server.
1312
1312
This environment variable is ignored when ` node ` runs as setuid root or
1313
1313
has Linux file capabilities set.
1314
1314
1315
+ The ` NODE_EXTRA_CA_CERTS ` environment variable is only read when the Node.js
1316
+ process is first launched. Changing the value at runtime using
1317
+ ` process.env.NODE_EXTRA_CA_CERTS ` has no effect on the current process.
1318
+
1315
1319
### ` NODE_ICU_DATA=file `
1316
1320
<!-- YAML
1317
1321
added: v0.11.15
Original file line number Diff line number Diff line change @@ -576,6 +576,13 @@ but any errors are otherwise ignored.
576
576
.Pp
577
577
This environment variable is ignored when `node` runs as setuid root or
578
578
has Linux file capabilities set.
579
+ .Pp
580
+ The
581
+ .Ar NODE_EXTRA_CA_CERTS
582
+ environment variable is only read when the Node.js process is first launched.
583
+ Changing the value at runtime using
584
+ .Ar process.env.NODE_EXTRA_CA_CERTS
585
+ has no effect on the current process.
579
586
.
580
587
.It Ev NODE_ICU_DATA Ar file
581
588
Data path for ICU (Intl object) data.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const envVars = new SafeMap(ArrayPrototypeConcat([
39
39
[ 'NODE_DISABLE_COLORS' , { helpText : 'set to 1 to disable colors in ' +
40
40
'the REPL' } ] ,
41
41
[ 'NODE_EXTRA_CA_CERTS' , { helpText : 'path to additional CA certificates ' +
42
- 'file' } ] ,
42
+ 'file. Only read once during process startup. ' } ] ,
43
43
[ 'NODE_NO_WARNINGS' , { helpText : 'set to 1 to silence process warnings' } ] ,
44
44
[ 'NODE_PATH' , { helpText : `'${ require ( 'path' ) . delimiter } '-separated list ` +
45
45
'of directories prefixed to the module search path' } ] ,
You can’t perform that action at this time.
0 commit comments