Thursday, June 27, 2024

Node.js certificate issues

When you encountered certificate issues when using node.js, there are some workaround that can be tried:

1) Add custom CA certs

    $ export NODE_EXTRA_CA_CERTS=[your CA certificate file path]

2) Disable certificate checking

    NODE_TLS_REJECT_UNAUTHORIZED


No comments:

Post a Comment

CSP on Apache

To add CSP to root if sort of funny. The following will NOT work for most cases !!     <LocationMatch "^/$">        Header s...