美文网首页
Vagrant 利用ss加速下载

Vagrant 利用ss加速下载

作者: 安哥拉的赞礼 | 来源:发表于2020-02-27 17:46 被阅读0次

Vagrant 利用ss加速下载,会出现如下情况



此时我们需先配置命令行代理

  • CMD 内
set http_proxy=127.0.0.1:1080
set https_proxy=127.0.0.1:1080

(1080是默认端口号)

  • git 内
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080

下载成功
同时解决vagrant up慢的问题

vagrant plugin install vagrant-proxyconf

然后编辑相关项目的Vagrantfile

Vagrant
图片.png
保存即可
重新运行Vagrant up
参考链接https://learnku.com/articles/34949

相关文章

网友评论

      本文标题:Vagrant 利用ss加速下载

      本文链接:https://www.haomeiwen.com/subject/ynsxhhtx.html