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
server sections because they are baked into PaaS offerings. PaaS offerings
203
214
generally start at the WSGI server layer.</p>
204
215
</div>
205
-
<divclass="section" id="server-resources">
206
-
<h2>Server Resources</h2>
207
-
<p><aclass="reference external" href="http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/">Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You</a> (Patrick McKenzie)</p>
<p><aclass="reference external" href="http://www.rackspace.com/knowledge_center/article/choosing-a-linux-distribution">Choosing a Linux Distribution</a></p>
257
263
<p><aclass="reference external" href="http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers">First 5 Minutes on a Server</a></p>
264
+
<p><aclass="reference external" href="http://www.andrewault.net/2010/05/17/securing-an-ubuntu-server/">Securing an Ubuntu Server</a>
<p><aclass="reference external" href="http://www.paperplanes.de/2011/1/5/the_virtues_of_monitoring.html">The Virtues of Monitoring</a></p>
592
600
<p><aclass="reference external" href="http://blog.docker.io/2013/07/effortless-monitoring-with-collectd-graphite-and-docker/">Effortless Monitoring with collectd, Graphite, and Docker</a></p>
601
+
</div>
602
+
603
+
</section>
604
+
<sectionid="source-control" class="tech-section">
605
+
<h1>Source Control</h1>
606
+
<p>Source control systems (also known as version control systems) store code
607
+
and other files, such as images, with a history of the changes made to
608
+
those files.</p>
609
+
<divclass="section" id="source-control-systems">
610
+
<h2>Source Control Systems</h2>
611
+
<p><aclass="reference external" href="http://git-scm.com/">Git</a> is a free and open source distributed version
<p><aclass="reference external" href="http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/">Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You</a> (Patrick McKenzie)</p>
<p><aclass="reference external" href="http://www.rackspace.com/knowledge_center/article/choosing-a-linux-distribution">Choosing a Linux Distribution</a></p>
90
89
<p><aclass="reference external" href="http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers">First 5 Minutes on a Server</a></p>
90
+
<p><aclass="reference external" href="http://www.andrewault.net/2010/05/17/securing-an-ubuntu-server/">Securing an Ubuntu Server</a>
server sections because they are baked into PaaS offerings. PaaS offerings
148
158
generally start at the WSGI server layer.</p>
149
159
</div>
150
-
<divclass="section" id="server-resources">
151
-
<h2>Server Resources</h2>
152
-
<p><aclass="reference external" href="http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/">Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You</a> (Patrick McKenzie)</p>
<p><aclass="reference external" href="http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/">Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You</a> (Patrick McKenzie)</p>
Copy file name to clipboardExpand all lines: source/content/pages/servers.rst
+16-8Lines changed: 16 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,12 @@ your needs for urgency of service ticket requests and the frequency you
66
66
require for ongoing maintenance such as persistent storage backups.
67
67
68
68
69
+
Virtualized servers resources
70
+
-----------------------------
71
+
`Choosing a low cost VPS <http://blog.redfern.me/choosing-a-low-cost-vps/>`_
72
+
73
+
74
+
69
75
Infrastructure-as-a-service
70
76
---------------------------
71
77
Infrastructure-as-a-service (IaaS) overlaps with virtualized servers
@@ -95,6 +101,14 @@ but you will pay correspondingly more for them. EBS throughput is just
95
101
one of many quirks you need to understand before committing to an
96
102
IaaS platform.
97
103
104
+
Infrastructure-as-a-service Resources
105
+
-------------------------------------
106
+
`Amazon Web Services official documentation for Python <http://aws.amazon.com/python/>`_
107
+
108
+
`boto <https://github.com/boto/boto>`_ is an amazing Python library for
109
+
working with Amazon Web Services
110
+
111
+
98
112
99
113
Platform-as-a-service
100
114
---------------------
@@ -124,15 +138,9 @@ If you go the PaaS route, you can skip over the operating system and web
124
138
server sections because they are baked into PaaS offerings. PaaS offerings
125
139
generally start at the WSGI server layer.
126
140
127
-
128
-
Server Resources
129
-
----------------
130
-
`Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You <http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/>`_ (Patrick McKenzie)
Source control systems (also known as version control systems) store code
9
+
and other files, such as images, with a history of the changes made to
10
+
those files.
11
+
12
+
13
+
Source Control Systems
14
+
----------------------
15
+
`Git <http://git-scm.com/>`_ is a free and open source distributed version
16
+
control system.
17
+
18
+
19
+
Source Control Third Party Services
20
+
-----------------------------------
21
+
`GitHub <https://github.com/>`_ is currently the most commonly used source
22
+
control platform for using Git.
23
+
24
+
`BitBucket <https://bitbucket.org/>`_ provides free Git and Mercurial
25
+
repositories for open projects and paid services for hosting private
26
+
repositories.
27
+
28
+
29
+
Source Control Resources
30
+
------------------------
31
+
`Staging Servers, Source Control & Deploy Workflows, And Other Stuff Nobody Teaches You <http://www.kalzumeus.com/2010/12/12/staging-servers-source-control-deploy-workflows-and-other-stuff-nobody-teaches-you/>`_ (Patrick McKenzie)
0 commit comments