On Mon, Mar 22, 2021 at 11:06:31AM +0800, shadewither wrote: > git version 2.25.1 / Ubuntu 20.04 > http.sslverify=false does not work. git insists on verifying ssl proxy > and complains. > curl has an option of --proxy-insecure to disable proxy verification, > what is the equivalent for git? I don't think there is one. Peeking at the curl source code, --proxy-insecure is setting CURLOPT_PROXY_SSL_VERIFYPEER and CURLOPT_PROXY_SSL_VERIFYHOST both to 0. So I think we'd need to plumb through an http.proxysslverify option that is equivalent to http.sslverify, but using the PROXY variants with curl_easy_setopt(). -Peff