Update old URL for box_url example

This commit is contained in:
Brian Cain 2018-09-28 08:31:18 -07:00
parent b5cb5f300b
commit 4060722ea1
No known key found for this signature in database
GPG Key ID: 43D51080D357A001
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ You may also specify the URL to a box directly using `config.vm.box_url`:
```ruby ```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64" 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 end
``` ```