Custom Root CA¶
TODO¶
Nodejs:
https://stackoverflow.com/a/47160447leaf
unauth fix - nodejs
export NODE_EXTRA_CA_CERTS=[your CA certificate file path]
FYI: The file format is a PEM BUNDLE. That means it's just a bunch of PEM-encoded-certificates all in the same file. You can create it just like this: cat *.cer > node_extra_ca_certs.pembundle and the use export NODE_EXTRA_CA_CERTS=node_extra_ca_certs.pembundle