Skip to content

Commit c21741b

Browse files
committed
working on static content page
1 parent a7c342d commit c21741b

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
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-03-27T08:45:11Z</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-03-28T13:25:20Z</updated></feed>

source/content/pages/12-static-content/1201-static-content.markdown

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ Some content on a website does not change and therefore should be served
88
up either directly through the web server or a content delivery network (CDN).
99
Examples include JavaScript, image, and CSS files.
1010

11-
A CDN is a third party that serves your static files.
12-
[Amazon CloudFront](http://aws.amazon.com/cloudfront/),
11+
12+
## Content delivery networks
13+
A content delivery network (CDN) is a third party that stores and serves
14+
static files. [Amazon CloudFront](http://aws.amazon.com/cloudfront/),
1315
[Akamai](http://www.akamai.com/), and
1416
[Rackspace Cloud Files](http://www.rackspace.com/cloud/public/files/)
1517
are examples of CDNs. The purpose of a CDN is to remove the load of static

source/content/pages/18-web-security/1801-web-security.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,6 @@ securing Linux distributions.
3333
[cheat sheets for security](https://www.owasp.org/index.php/Cheat_Sheets)
3434
topics.
3535

36+
* [How HTTPS Secures Connections](http://blog.hartleybrody.com/https-certificates/)
37+
is a guide for what HTTPS does and does not secure against.
3638

static-content.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ <h1>Static content</h1>
7777
<p>Some content on a website does not change and therefore should be served
7878
up either directly through the web server or a content delivery network (CDN).
7979
Examples include JavaScript, image, and CSS files.</p>
80-
<p>A CDN is a third party that serves your static files.
81-
<a href="http://aws.amazon.com/cloudfront/">Amazon CloudFront</a>,
80+
<h2>Content delivery networks</h2>
81+
<p>A content delivery network (CDN) is a third party that stores and serves
82+
static files. <a href="http://aws.amazon.com/cloudfront/">Amazon CloudFront</a>,
8283
<a href="http://www.akamai.com/">Akamai</a>, and
8384
<a href="http://www.rackspace.com/cloud/public/files/">Rackspace Cloud Files</a>
8485
are examples of CDNs. The purpose of a CDN is to remove the load of static

web-application-security.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ <h2>Security Resources</h2>
110110
<a href="https://www.owasp.org/index.php/Cheat_Sheets">cheat sheets for security</a>
111111
topics.</p>
112112
</li>
113+
<li>
114+
<p><a href="http://blog.hartleybrody.com/https-certificates/">How HTTPS Secures Connections</a>
115+
is a guide for what HTTPS does and does not secure against.</p>
116+
</li>
113117
</ul>
114118
<br/>
115119
Next read the

0 commit comments

Comments
 (0)