| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 77eb45a commit c21731b
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1175,6 +1175,10 @@ options property is explicitly specified for a TLS or HTTPS client or server. | |||
| 1175 | 1175 | This environment variable is ignored when `node` runs as setuid root or | |
| 1176 | 1176 | has Linux file capabilities set. | |
| 1177 | 1177 | ||
| 1178 | + The `NODE_EXTRA_CA_CERTS` environment variable is only read when the Node.js | ||
| 1179 | + process is first launched. Changing the value at runtime using | ||
| 1180 | + `process.env.NODE_EXTRA_CA_CERTS` has no effect on the current process. | ||
| 1181 | + | ||
| 1178 | 1182 | ### `NODE_ICU_DATA=file` | |
| 1179 | 1183 | <!-- YAML | |
| 1180 | 1184 | added: v0.11.15 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -544,6 +544,13 @@ but any errors are otherwise ignored. | |||
| 544 | 544 | .Pp | |
| 545 | 545 | This environment variable is ignored when `node` runs as setuid root or | |
| 546 | 546 | has Linux file capabilities set. | |
| 547 | + .Pp | ||
| 548 | + The | ||
| 549 | + .Ar NODE_EXTRA_CA_CERTS | ||
| 550 | + environment variable is only read when the Node.js process is first launched. | ||
| 551 | + Changing the value at runtime using | ||
| 552 | + .Ar process.env.NODE_EXTRA_CA_CERTS | ||
| 553 | + has no effect on the current process. | ||
| 547 | 554 | . | |
| 548 | 555 | .It Ev NODE_ICU_DATA Ar file | |
| 549 | 556 | Data path for ICU (Intl object) data. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,7 +24,7 @@ const envVars = new Map([ | |||
| 24 | 24 | ['NODE_DISABLE_COLORS', { helpText: 'set to 1 to disable colors in ' + | |
| 25 | 25 | 'the REPL' }], | |
| 26 | 26 | ['NODE_EXTRA_CA_CERTS', { helpText: 'path to additional CA certificates ' + | |
| 27 | - 'file' }], | ||
| 27 | + 'file. Only read once during process startup.' }], | ||
| 28 | 28 | ['NODE_NO_WARNINGS', { helpText: 'set to 1 to silence process warnings' }], | |
| 29 | 29 | ['NODE_PATH', { helpText: `'${require('path').delimiter}'-separated list ` + | |
| 30 | 30 | 'of directories prefixed to the module search path' }], | |
| Back | FazBrowse Home | New Git URL |
0 commit comments