From 4060722ea1fcb8e10a2d2f5e6990441c6cec927c Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 28 Sep 2018 08:31:18 -0700 Subject: [PATCH] Update old URL for box_url example --- website/source/intro/getting-started/boxes.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/intro/getting-started/boxes.html.md b/website/source/intro/getting-started/boxes.html.md index 59fcecd17..495ff8540 100644 --- a/website/source/intro/getting-started/boxes.html.md +++ b/website/source/intro/getting-started/boxes.html.md @@ -89,7 +89,7 @@ You may also specify the URL to a box directly using `config.vm.box_url`: ```ruby Vagrant.configure("2") do |config| config.vm.box = "hashicorp/precise64" - config.vm.box_url = "http://files.vagrantup.com/precise64.box" + config.vm.box_url = "https://vagrantcloud.com/hashicorp/precise64" end ```