【发布时间】:2020-06-21 12:51:55
【问题描述】:
我目前正在代理后面工作,并且一直坚持使用它配置拒绝 git 或 intellij 或 npm CLI 的每次通信,我这样做了:
在 git cli 上:
[http]
proxy = http://xxxxxx
sslverify = false
[https]
proxy = http://xxxxxx
sslVerify = false
在 intellij 上,我设置了相同的配置,使其在我的代理配置后面工作,以便能够下载 maven 依赖项
和我做的 npm 配置一样
https-proxy = "http://xxxxxxxxxxxxxxxx"
proxy = "http://xxxxxxxxxxxx"
strict-ssl = false
所有这些解决方案都不起作用,所有请求都会超时
【问题讨论】:
标签: git maven intellij-idea npm proxy