You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,7 +22,7 @@ The infrastructure is fairly simple, with the following structure:
22
22
4. Run `ansible-galaxy install -r requirements.yml` in this directory to get the required Ansible roles.
23
23
5. Run `vagrant up` to build the VMs and configure the infrastructure.
24
24
25
-
When Vagrant is finished provisioning the VMs with Ansible, you should be able to visit `http://192.168.4.2/`, and you'll see the default Ubuntu Apache 2 'installation complete' page (loaded from one of the two backend web servers through HAProxy).
25
+
When Vagrant is finished provisioning the VMs with Ansible, you should be able to visit `http://192.168.56.2/`, and you'll see the default Ubuntu Apache 2 'installation complete' page (loaded from one of the two backend web servers through HAProxy).
Copy file name to clipboardExpand all lines: deployments-rolling/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This project builds a [Node.js](https://nodejs.org/)-based API app inside a VM.
13
13
Once the VM is built, you can test the API by running the following command (copy and paste verbatim, without the leading `$`), which requests the `/hello/:name` endpoint on each server:
14
14
15
15
$ for i in {2..5}; \
16
-
do curl -w "\n" "http://192.168.3.$i:8080/hello/john"; \
16
+
do curl -w "\n" "http://192.168.56.$i:8080/hello/john"; \
17
17
done
18
18
19
19
If the above command outputs `"hello john"` on four lines, everything worked correctly!
Copy file name to clipboardExpand all lines: deployments/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This project builds a [Ruby on Rails](http://rubyonrails.org/)-based app inside
10
10
4. Run `ansible-galaxy install -r requirements.yml` in this directory to get the required Ansible roles.
11
11
5. Run `vagrant up` to build the VM and deploy the version of the app specified in `playbooks/vars.yml`.
12
12
13
-
Once the VM is built, you can visit `http://192.168.33.7/` (or whatever domain name you point to that IP address in your local hosts file) to view the demo app.
13
+
Once the VM is built, you can visit `http://192.168.56.7/` (or whatever domain name you point to that IP address in your local hosts file) to view the demo app.
0 commit comments