如何在代理环境中使用无业游民?

ithelloworld

我公司的网络正在使用代理。因此,当我使用时vagrant up,它显示了401权限错误。

我该如何做一些设置才能使用流浪汉?

亚历杭德罗·莫雷诺(Alejandro Moreno)

安装proxyconf:

vagrant plugin install vagrant-proxyconf

配置您的Vagrantfile:

config.proxy.http     = "http://yourproxy:8080"
config.proxy.https    = "http://yourproxy:8080"
config.proxy.no_proxy = "localhost,127.0.0.1"

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章