Skip to content

Commit 554e757

Browse files
committed
adding initial apache page
1 parent 4523b7f commit 554e757

File tree

6 files changed

+32
-13
lines changed

6 files changed

+32
-13
lines changed

all.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7948,9 +7948,6 @@ <h2>Why is the Apache HTTP Server important?</h2>
79487948
<h3>Apache HTTP Server resources</h3>
79497949
<ul>
79507950
<li>
7951-
<p><a href="http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid">Apache and mod_wsgi on Ubuntu 10.04</a></p>
7952-
</li>
7953-
<li>
79547951
<p>The
79557952
<a href="http://httpd.apache.org/docs/current/">official project documentation page</a>
79567953
contains a section with How-Tos and Tutorials to handle authentication,
@@ -7960,6 +7957,14 @@ <h3>Apache HTTP Server resources</h3>
79607957
<p><a href="http://www.apachetutor.org/admin/reverseproxies">Reverse proxies</a> shows
79617958
how to set up Apache as a reverse proxy using <code>mod_proxy</code>.</p>
79627959
</li>
7960+
<li>
7961+
<p><a href="http://thecodeship.com/deployment/deploy-django-apache-virtualenv-and-mod_wsgi/">Deploy Django on Apache with Virtualenv and mod_wsgi</a>
7962+
provides instructions for what packages to install to get Apache up
7963+
and running with mod_wsgi on Ubuntu.</p>
7964+
</li>
7965+
<li>
7966+
<p><a href="http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid">Apache and mod_wsgi on Ubuntu 10.04</a></p>
7967+
</li>
79637968
</ul>
79647969
<h1>Testing</h1>
79657970
<p>Testing determines whether software runs correctly based on specific inputs

apache-http-server.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ <h2>Why is the Apache HTTP Server important?</h2>
4949
<h3>Apache HTTP Server resources</h3>
5050
<ul>
5151
<li>
52-
<p><a href="http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid">Apache and mod_wsgi on Ubuntu 10.04</a></p>
53-
</li>
54-
<li>
5552
<p>The
5653
<a href="http://httpd.apache.org/docs/current/">official project documentation page</a>
5754
contains a section with How-Tos and Tutorials to handle authentication,
@@ -61,6 +58,14 @@ <h3>Apache HTTP Server resources</h3>
6158
<p><a href="http://www.apachetutor.org/admin/reverseproxies">Reverse proxies</a> shows
6259
how to set up Apache as a reverse proxy using <code>mod_proxy</code>.</p>
6360
</li>
61+
<li>
62+
<p><a href="http://thecodeship.com/deployment/deploy-django-apache-virtualenv-and-mod_wsgi/">Deploy Django on Apache with Virtualenv and mod_wsgi</a>
63+
provides instructions for what packages to install to get Apache up
64+
and running with mod_wsgi on Ubuntu.</p>
65+
</li>
66+
<li>
67+
<p><a href="http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid">Apache and mod_wsgi on Ubuntu 10.04</a></p>
68+
</li>
6469
</ul>
6570
<h3>Continue learning about web servers or move to a new topic?</h3>
6671
<div class="row">

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>2016-03-10T18:20:37Z</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>2016-03-11T17:38:13Z</updated></feed>

source/content/pages/07-web-app-deployment/22-apache-http-server.markdown

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ development attention.
2929

3030

3131
### Apache HTTP Server resources
32-
* [Apache and mod\_wsgi on Ubuntu 10.04](http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid)
33-
3432
* The
3533
[official project documentation page](http://httpd.apache.org/docs/current/)
3634
contains a section with How-Tos and Tutorials to handle authentication,
@@ -39,4 +37,9 @@ development attention.
3937
* [Reverse proxies](http://www.apachetutor.org/admin/reverseproxies) shows
4038
how to set up Apache as a reverse proxy using `mod_proxy`.
4139

40+
* [Deploy Django on Apache with Virtualenv and mod\_wsgi](http://thecodeship.com/deployment/deploy-django-apache-virtualenv-and-mod_wsgi/)
41+
provides instructions for what packages to install to get Apache up
42+
and running with mod\_wsgi on Ubuntu.
43+
44+
* [Apache and mod\_wsgi on Ubuntu 10.04](http://library.linode.com/web-servers/apache/mod-wsgi/ubuntu-10.04-lucid)
4245

source/theme/templates/table-of-contents.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,13 @@ <h3>8. <a href="/deployment.html">Web App Deployment</a></h3>
228228
<a href="/web-servers.html">Web servers</a>
229229
</div>
230230
<div class="toc-indent">
231-
<a href="/wsgi-servers.html">WSGI servers</a>
231+
<a href="/nginx.html">Nginx</a>
232232
</div>
233233
<div class="toc-indent">
234-
<a href="/nginx.html">Nginx</a>
234+
<a href="/apache-http-server.html">Apache HTTP Server</a>
235+
</div>
236+
<div class="toc-indent">
237+
<a href="/wsgi-servers.html">WSGI servers</a>
235238
</div>
236239
<div class="toc-indent">
237240
<a href="/source-control.html">Source control</a>

table-of-contents.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,13 @@ <h3>8. <a href="/deployment.html">Web App Deployment</a></h3>
246246
<a href="/web-servers.html">Web servers</a>
247247
</div>
248248
<div class="toc-indent">
249-
<a href="/wsgi-servers.html">WSGI servers</a>
249+
<a href="/nginx.html">Nginx</a>
250250
</div>
251251
<div class="toc-indent">
252-
<a href="/nginx.html">Nginx</a>
252+
<a href="/apache-http-server.html">Apache HTTP Server</a>
253+
</div>
254+
<div class="toc-indent">
255+
<a href="/wsgi-servers.html">WSGI servers</a>
253256
</div>
254257
<div class="toc-indent">
255258
<a href="/source-control.html">Source control</a>

0 commit comments

Comments
 (0)