Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! fixup! crypto: support --use-system-ca on non-Windows and non-…
…macOS
  • Loading branch information
joyeecheung committed Feb 15, 2025
commit 76aaa2961a3f8ad0ed0102cc48a04464eed384cc
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -2909,7 +2909,7 @@ On other systems, Node.js loads certificates from the default certificate file
(typically `/etc/ssl/cert.pem`) and default certificate directory (typically
`/etc/ssl/certs`) that the version of OpenSSL that Node.js links to respects.
This typically works with the convention on major Linux distributions and other
UNIX-like systems. If the overriding OpenSSL environment variables
Unix-like systems. If the overriding OpenSSL environment variables
(typically `SSL_CERT_FILE` and `SSL_CERT_DIR`, depending on the configuration
of the OpenSSL that Node.js links to) are set, the specified paths will be used to load
certificates instead. These environment variables can be used as workarounds
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-native-certs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (!common.hasCrypto) {
// $ sudo rm /usr/local/share/ca-certificates/fake-startcom-root-cert.crt
// $ sudo update-ca-certificates --fresh
//
// For other UNIX-like systems, consult their manuals, there are usually
// For other Unix-like systems, consult their manuals, there are usually
// file-based processes similar to the Debian/Ubuntu one but with different
// file locations and update commands.
const handleRequest = (req, res) => {
Expand Down