Browse code

Install curl; nix stray backslash; use proper IP address

Eric Hanchrow authored on 2013/05/21 08:29:57
Showing 1 changed files
... ...
@@ -70,7 +70,8 @@ lookup the public-facing port which is NAT-ed store the private port used by the
70 70
 
71 71
 .. code-block:: bash
72 72
 
73
-    curl \http://`hostname`:$WEB_PORT
73
+    sudo aptitude install curl
74
+    curl http://127.0.0.1:$WEB_PORT
74 75
       Hello world!
75 76
 
76 77
 access the web app using curl. If everything worked as planned you should see the line "Hello world!" inside of your console.