-
Hi all, Does anyone know the 'secret sauce' that will allow Kobweb to build and run when behind a corporate NTLM proxy please? So far I have added my corporate proxy's signing certificate to cacerts (as our proxy performs a certificate insertion), added the proxy settings in the Idea settings ('Connection was successful'), and added proxy information within the project-level
However when trying to build a new, empty project, I get the result:
[... snippety snip ...]
Is there something else I should be doing please? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Ah-ha! I needed to tell NPM that it should use an extra certificate for chain of trust, as described here: https://stackoverflow.com/a/56239954/955198 I permanently added a (Windows) system variable, NODE_EXTRA_CA_CERTS, with the value set to a downloaded version of our proxy's root signing certificate in PEM format. The build now runs to completion. |
Beta Was this translation helpful? Give feedback.
Ah-ha! I needed to tell NPM that it should use an extra certificate for chain of trust, as described here: https://stackoverflow.com/a/56239954/955198
I permanently added a (Windows) system variable, NODE_EXTRA_CA_CERTS, with the value set to a downloaded version of our proxy's root signing certificate in PEM format.
The build now runs to completion.