Cannot get aube to work behind company firewall #1437
Replies: 1 comment 1 reply
|
Thanks for the report. Could you first confirm that CA="$(npm config get cafile)"
test -r "$CA" && echo readable
openssl x509 -in "$CA" -noout -subject -issuer
curl --cacert "$CA" https://registry.npmjs.org/ramda
NODE_EXTRA_CA_CERTS="$CA" npm_config_fetch_retries=0 aube view ramda
npm_config_strict_ssl=false npm_config_fetch_retries=0 aube view ramdaThe last command is diagnostic only; please do not persist
I am not on your company network, so I cannot reproduce the MITM setup directly. If you can isolate the failure, a PR would be very welcome. The relevant code is in It would also be useful to improve the production error so it prints the full reqwest/rustls source chain (for example AI-assisted — Tool: Codex; model: OpenAI/GPT-5; version: unavailable. |
Uh oh!
There was an error while loading. Please reload this page.
I'm struggeling to get aube to work. I've installed it via mise and when I run
aube doctorit shows no issues. However, when I runaube installin an existing project, it cannot download any dependencies. I get many warnings like this:and then at the end this error:
Most likely the reason is that I'm behind a company firewall that acts as a man-in-the-middle. For that reason, for NPM I had to configure
cafilepointing to the root certificate in my.npmrc. For NPM it does work perfectly fine and I understood the aube docs so that it should also use this setting. In my.npmrcI have these configs:Running
aube config listalso shows these settings.What could be the issue? How can I debug this?
All reactions