Use example domain for documentation
This commit is contained in:
parent
f22feac515
commit
2a239c6c9d
@ -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"
|
||||
}
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user