curl – 跳过“vagrant up”的证书验证

前端之家收集整理的这篇文章主要介绍了curl – 跳过“vagrant up”的证书验证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
自从我们的代理MITM https以来,我想跳过关于流浪者的卷曲证书验证,因此卷曲’通常的SSL证书错误弹出.

我尝试了流浪汉 – 确保puppetlabs / debian-7.8-32-nocm,但这并没有改变任何东西.接下来我在Vagrantfile中尝试了config.vm.Box_download_insecure和config.vm.Box_download_insecure =“puppetlabs / debian-7.8-32-nocm”,但是唉 – 没有运气.

>如果我使用atlas的盒子,config.vm.Box_download_insecure的URL是什么?
>是否有另一种可能使卷曲跳过证书检查?

解决方法

它期待一个布尔值(真/假).
config.vm.Box_download_insecure = true

https://www.vagrantup.com/docs/vagrantfile/machine_settings.html

config.vm.Box_download_insecure – If true,then SSL certificates from the server will not be verified. By default,if the URL is an HTTPS URL,then SSL certs will be verified.

原文链接:https://www.f2er.com/linux/395036.html

猜你在找的Linux相关文章