Skip to content

Commit e5755e4

Browse files
committed
Fix spacing
1 parent 720eb3d commit e5755e4

File tree

1 file changed

+11
-5
lines changed
  • module7-cloud-computing/r1.2-deployment

1 file changed

+11
-5
lines changed

module7-cloud-computing/r1.2-deployment/README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ http://imgur.com:80/
4646
You will notice the 80 gets dropped in the URL bar. That’s because port 80 is the default port for HTTP traffic.
4747

4848
HTTPS traffic uses port 443. Try Hacker News.
49+
4950
https://news.ycombinator.com:443/
5051

5152
Because these ports are often public, you need special privileges to run processes using them. Also, it is not great to run Node.js on port 80 or 443 directly because you may want to open up a few different applications on these ports. With a router you will be able to send traffic from port 80 or 443 to any program you wish, depending on the headers of the incoming HTTP request.
@@ -60,7 +61,7 @@ Almost there. By default, connecting to your instance without a username will tr
6061
To connect, the SSH command should look something like
6162
`ssh USERNAME@[IP FROM PROVIDER]`
6263

63-
## Installing node and system dependencies
64+
## Installing node
6465

6566
Once in an SSH session the first thing to do is get Node.js. NVM (Node Version Manager) is a pretty great way to install Node.js and allows you to easily switch versions if required.
6667

@@ -94,9 +95,13 @@ Select the key’s contents and copy it into Github. Deploy keys are added in a
9495
Whenever you are logged in over SSH, you want the keys to be added so that they are used to authenticate with Github. To do this, add these lines to the top of your ~/.bashrc file.
9596

9697
<code>
97-
# Start the SSH agent <br>
98-
eval `ssh-agent -s` <br>
99-
# Add the SSH key <br>
98+
99+
Start the SSH agent
100+
101+
eval `ssh-agent -s`
102+
103+
Add the SSH key
104+
100105
ssh-add
101106
</code>
102107

@@ -107,7 +112,8 @@ This will make sure you use the keys whenever you log on to the server. To run t
107112
Now we can clone the repo!
108113

109114
<code>
110-
You should use your own git URL. <br>
115+
You should use your own git URL.
116+
111117
git clone [email protected]:roberttod/tutorial-pt-2.git
112118
</code>
113119

0 commit comments

Comments
 (0)