Skip to content

Commit ea4d1bf

Browse files
committed
Updating styling a bit. Still needs work.
1 parent ca62694 commit ea4d1bf

File tree

15 files changed

+194
-80
lines changed

15 files changed

+194
-80
lines changed

css/c.css

Lines changed: 25 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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>2013-01-20T12:30:05Z</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>2013-06-23T11:04:51Z</updated></feed>

img/full-stack-python-128px.jpg

10.4 KB
Loading

index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
<li><a href="#wsgi-server">WSGI Server</a></li>
5757
<li><a href="#web-framework">Web Framework</a></li>
5858
<li><a href="#content-delivery-network">CDN</a></li>
59+
<li><a href="#website-security">Website Security</a></li>
5960
<li><a href="#web-analytics">Web Analytics</a></li>
6061
<li><a href="#caching">Caching</a></li>
6162
<li><a href="#change-log">Change Log</a></li>
@@ -268,6 +269,7 @@ <h2>Monitoring</h2>
268269
<h2>Operating System Resources</h2>
269270
<p><a class="reference external" href="http://www.andrewault.net/2010/05/17/securing-an-ubuntu-server/">Securing an Ubuntu Server</a></p>
270271
<p><a class="reference external" href="http://joshrendek.com/2013/01/securing-ubuntu/">Securing Ubuntu</a></p>
272+
<p><a class="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>
271273
</div>
272274

273275
</section>
@@ -421,6 +423,14 @@ <h1>CDN</h1>
421423
<div class="section" id="cdn-resources">
422424
<h2>CDN Resources</h2>
423425
<p><a class="reference external" href="http://blog.doismellburning.co.uk/2012/07/14/using-amazon-s3-to-host-your-django-static-files/">Using Amazon S3 to host your Django static files</a></p>
426+
</div>
427+
428+
</section>
429+
<section id="website-security" class="tech-section">
430+
<h1>Website Security</h1>
431+
<div class="section" id="website-security-resources">
432+
<h2>Website Security Resources</h2>
433+
<p><a class="reference external" href="http://arstechnica.com/security/2013/02/securing-your-website-a-tough-job-but-someones-got-to-do-it/">Securing Your Website</a></p>
424434
</div>
425435

426436
</section>
@@ -440,7 +450,12 @@ <h1>Caching</h1>
440450
operations and serving the precomputed answers to clients.</p>
441451
<div class="section" id="caching-resources">
442452
<h2>Caching Resources</h2>
443-
<p><a class="reference external" href="http://memcached.org/">memcached</a> is a common in-memory caching system.</p>
453+
<ul class="simple">
454+
<li><a class="reference external" href="http://memcached.org/">memcached</a> is a common in-memory caching system.</li>
455+
<li><a class="reference external" href="http://redis.io/">Redis</a> is a key-value in-memory data store that can
456+
easily be configured for caching with libraries such as
457+
<a class="reference external" href="https://github.com/sebleier/django-redis-cache">django-redis-cache</a>.</li>
458+
</ul>
444459
</div>
445460

446461
</section>

pages/caching.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ <h1>Caching</h1>
5252
operations and serving the precomputed answers to clients.</p>
5353
<div class="section" id="caching-resources">
5454
<h2>Caching Resources</h2>
55-
<p><a class="reference external" href="http://memcached.org/">memcached</a> is a common in-memory caching system.</p>
55+
<ul class="simple">
56+
<li><a class="reference external" href="http://memcached.org/">memcached</a> is a common in-memory caching system.</li>
57+
<li><a class="reference external" href="http://redis.io/">Redis</a> is a key-value in-memory data store that can
58+
easily be configured for caching with libraries such as
59+
<a class="reference external" href="https://github.com/sebleier/django-redis-cache">django-redis-cache</a>.</li>
60+
</ul>
5661
</div>
5762

5863
<hr/>

pages/operating-system.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ <h2>Monitoring</h2>
9797
<h2>Operating System Resources</h2>
9898
<p><a class="reference external" href="http://www.andrewault.net/2010/05/17/securing-an-ubuntu-server/">Securing an Ubuntu Server</a></p>
9999
<p><a class="reference external" href="http://joshrendek.com/2013/01/securing-ubuntu/">Securing Ubuntu</a></p>
100+
<p><a class="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>
100101
</div>
101102

102103
<hr/>

pages/website-security.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!-->
6+
<html class="no-js" lang="en"> <!--<![endif]-->
7+
8+
<head>
9+
<meta charset="utf-8">
10+
<meta name="language" content="English" />
11+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12+
13+
<title>Full Stack Python</title>
14+
<meta name="description" content="Full stack Python shows how an entire Python web application is built, from the server to the front end JavaScript.">
15+
<meta name="author" content="Matt Makai">
16+
<meta name="viewport" content="width=device-width,initial-scale=1">
17+
<link rel="stylesheet" href="/css/c.css" />
18+
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css" />
19+
<script src="/js/modernizr-2.0.6.min.js"></script>
20+
<script type="text/javascript">
21+
22+
var _gaq = _gaq || [];
23+
_gaq.push(['_setAccount', 'UA-19910497-7']);
24+
_gaq.push(['_trackPageview']);
25+
26+
(function() {
27+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30+
})();
31+
32+
</script>
33+
</head>
34+
35+
<body>
36+
<a href="https://github.com/makaimc/fullstackpython.github.com" class="github">
37+
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" />
38+
</a>
39+
<div class="container">
40+
<div class="row">
41+
<div class="span12">
42+
<div class="logo-header-section">
43+
<a href="/"><img src="../img/full-stack-python-logo-bw.png" height="42" width="42" class="logo-image" /></a>
44+
<span class="logo-title"><a href="/">Full Stack Python</a></span>
45+
</div>
46+
</div>
47+
</div>
48+
<h1>Website Security</h1>
49+
50+
51+
<div class="section" id="website-security-resources">
52+
<h2>Website Security Resources</h2>
53+
<p><a class="reference external" href="http://arstechnica.com/security/2013/02/securing-your-website-a-tough-job-but-someones-got-to-do-it/">Securing Your Website</a></p>
54+
</div>
55+
56+
<hr/>
57+
<div class="footer pull-right">
58+
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
59+
</div>
60+
</div>
61+
62+
<script src="http://code.jquery.com/jquery-latest.js"></script>
63+
<script src="/js/bootstrap.min.js"></script>
64+
</body>
65+
</html>

source/content/pages/caching.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ operations and serving the precomputed answers to clients.
1010

1111
Caching Resources
1212
-----------------
13-
`memcached <http://memcached.org/>`_ is a common in-memory caching system.
13+
* `memcached <http://memcached.org/>`_ is a common in-memory caching system.
1414

15+
* `Redis <http://redis.io/>`_ is a key-value in-memory data store that can
16+
easily be configured for caching with libraries such as
17+
`django-redis-cache <https://github.com/sebleier/django-redis-cache>`_.

source/content/pages/operating-system.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ Operating System Resources
6262

6363
`Securing Ubuntu <http://joshrendek.com/2013/01/securing-ubuntu/>`_
6464

65-
65+
`First 5 Minutes on a Server <http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers>`_
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Website Security
2+
================
3+
4+
:category: page
5+
:slug: website-security
6+
:sort-order: 08
7+
8+
9+
10+
11+
Website Security Resources
12+
--------------------------
13+
`Securing Your Website <http://arstechnica.com/security/2013/02/securing-your-website-a-tough-job-but-someones-got-to-do-it/>`_
14+
15+

0 commit comments

Comments
 (0)