本文介绍了如何在代理环境中使用无业游民?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我公司的网络正在使用代理.因此,当我使用vagrant up
时,它显示了401权限错误.
My company's network is using proxy. So when I use vagrant up
, it showed me a 401 permission error.
如何进行一些设置才能使用流浪汉?
How can I do some setting to use vagrant?
推荐答案
安装proxyconf:
Install proxyconf:
vagrant plugin install vagrant-proxyconf
配置您的Vagrantfile:
Configure your Vagrantfile:
config.proxy.http = "http://yourproxy:8080"
config.proxy.https = "http://yourproxy:8080"
config.proxy.no_proxy = "localhost,127.0.0.1"
这篇关于如何在代理环境中使用无业游民?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!