diff --git a/website/source/docs/boxes/format.html.md b/website/source/docs/boxes/format.html.md index 0b5e38e9d..5f971f8b2 100644 --- a/website/source/docs/boxes/format.html.md +++ b/website/source/docs/boxes/format.html.md @@ -103,7 +103,7 @@ It is a JSON document, structured in the following way: "providers": [ { "name": "virtualbox", - "url": "http://somewhere.com/bionic64_010_virtualbox.box", + "url": "http://example.com/bionic64_010_virtualbox.box", "checksum_type": "sha1", "checksum": "foo" } diff --git a/website/source/docs/cli/init.html.md b/website/source/docs/cli/init.html.md index bf45e6115..a52c0f17c 100644 --- a/website/source/docs/cli/init.html.md +++ b/website/source/docs/cli/init.html.md @@ -61,7 +61,7 @@ $ vagrant init -f hashicorp/bionic64 Create a Vagrantfile with the specific box, from the specific box URL: ```sh -$ vagrant init my-company-box https://boxes.company.com/my-company.box +$ vagrant init my-company-box https://example.com/my-company.box ``` Create a Vagrantfile, locking the box to a version constraint: diff --git a/website/source/docs/provisioning/chef_client.html.md b/website/source/docs/provisioning/chef_client.html.md index 98365d451..6fd49118b 100644 --- a/website/source/docs/provisioning/chef_client.html.md +++ b/website/source/docs/provisioning/chef_client.html.md @@ -36,7 +36,7 @@ that the node can register with the Chef Server: ```ruby Vagrant.configure("2") do |config| config.vm.provision "chef_client" do |chef| - chef.chef_server_url = "http://mychefserver.com" + chef.chef_server_url = "http://example.com" chef.validation_key_path = "validation.pem" end end diff --git a/website/source/docs/push/ftp.html.md b/website/source/docs/push/ftp.html.md index ec2bfd114..43cab4587 100644 --- a/website/source/docs/push/ftp.html.md +++ b/website/source/docs/push/ftp.html.md @@ -51,7 +51,7 @@ The Vagrant Push FTP and SFTP strategy is defined in the `Vagrantfile` using the ```ruby config.push.define "ftp" do |push| - push.host = "ftp.company.com" + push.host = "ftp.example.com" push.username = "username" push.password = "password" end diff --git a/website/source/docs/push/index.html.md b/website/source/docs/push/index.html.md index 096217b0b..4cc52d555 100644 --- a/website/source/docs/push/index.html.md +++ b/website/source/docs/push/index.html.md @@ -20,7 +20,7 @@ Push configuration section in a `Vagrantfile`: ```ruby config.push.define "ftp" do |push| - push.host = "ftp.company.com" + push.host = "ftp.example.com" push.username = "..." # ... end