Skip to content

Commit c7664f4

Browse files
committed
adding learning checklist to server page
1 parent 9ff4ea9 commit c7664f4

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-02T07:54:54Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-02T08:22:24Z</updated></feed>

servers.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,20 @@ <h2>Why are servers necessary?</h2>
5555
actual users (as opposed to test users) are known as <em>production</em> servers.
5656
Production servers hold real data (again as opposed to test data) and must be
5757
secure against unauthorized access.</p>
58+
<h2>Servers learning checklist</h2>
59+
<p><i class="fa fa-check-square-o"></i>
60+
Understand the difference between bare metal servers, virtual private servers
61+
(VPS) and infrastructure-as-a-service. </p>
62+
<p><i class="fa fa-check-square-o"></i>
63+
Sign up for a hosting provider. I recommend getting a
64+
<a href="https://www.linode.com/?r=bfeecaf55a83cd3dd224a5f2a3a001fdf95d4c3d">Linode VPS</a>
65+
to set up your initial infrastructure and deploy your web application there.
66+
<a href="https://www.digitalocean.com/">Digital Ocean</a> and
67+
<a href="http://prgmr.com/xen/">prgrmr</a> are other VPS options. You can change
68+
hosting providers later after learning how to deploy web apps.</p>
69+
<p><i class="fa fa-check-square-o"></i>
70+
Provision your first server and move on to the
71+
<a href="/operating-systems.html">operating systems section</a>.</p>
5872
<h2>"Bare metal" servers</h2>
5973
<p>The term <em>bare metal</em> refers to purchasing the actual hardware and hooking
6074
it up to the Internet either through a business-class internet service

source/content/pages/03-deployment/0303-servers.markdown

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,24 @@ Production servers hold real data (again as opposed to test data) and must be
3131
secure against unauthorized access.
3232

3333

34+
## Servers learning checklist
35+
<i class="fa fa-check-square-o"></i>
36+
Understand the difference between bare metal servers, virtual private servers
37+
(VPS) and infrastructure-as-a-service.
38+
39+
<i class="fa fa-check-square-o"></i>
40+
Sign up for a hosting provider. I recommend getting a
41+
[Linode VPS](https://www.linode.com/?r=bfeecaf55a83cd3dd224a5f2a3a001fdf95d4c3d)
42+
to set up your initial infrastructure and deploy your web application there.
43+
[Digital Ocean](https://www.digitalocean.com/) and
44+
[prgrmr](http://prgmr.com/xen/) are other VPS options. You can change
45+
hosting providers later after learning how to deploy web apps.
46+
47+
<i class="fa fa-check-square-o"></i>
48+
Provision your first server and move on to the
49+
[operating systems section](/operating-systems.html).
50+
51+
3452
## "Bare metal" servers
3553
The term *bare metal* refers to purchasing the actual hardware and hooking
3654
it up to the Internet either through a business-class internet service

0 commit comments

Comments
 (0)