====== Chromium ====== * windows [[https://github.com/chromium/chromium/blob/master/docs/windows_build_instructions.md|编译说明]] * 代理设置: chromium 代理完美解决办法 #git的代理设置 git config --global http.proxy 127.0.0.1:1081 git config --global https.proxy 127.0.0.1:1081 #winhttp的代理设置 netsh winhttp set proxy 127.0.0.1:1081 (控制台运行时需要以管理员权限打开) #cipd_client的代理设置 cipd_client项目来源于 https://github.com/luci/luci-go/tree/master/cipd/client/cipd 通过源码分析使用的是golong的net/http库访问http/https,可通过环境变量设置代理 set HTTP_PROXY=127.0.0.1:1081 (注意不要加http://或者https://) set HTTPS_PROXY=127.0.0.1:1081 (注意不要加http://或者https://) 本地代理(VPN)要求1081端口是本地http/https代理服务, 如果是socks5代理cipd_client是不支持的, 需要使用privoxy.exe再做一层http/https代理 ———————————————— 版权声明:本文为CSDN博主「杨小卫」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/tdgx2004/article/details/66965675