Skip to content

Commit 6c5664c

Browse files
committed
adding caddy and nginx links to web servers page
1 parent 5a7f504 commit 6c5664c

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

all.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5814,13 +5814,16 @@ <h2>Web server implementations</h2>
58145814
and configurations.</p>
58155815
<ul>
58165816
<li>
5817-
<p><a href="https://httpd.apache.org/">Apache HTTP Server</a></p>
5817+
<p>The <a href="/apache-http-server.html">Apache HTTP Server</a> has been the most
5818+
commonly deployed web server on the Internet for 20+ years.</p>
58185819
</li>
58195820
<li>
5820-
<p><a href="http://nginx.org/en/">Nginx</a></p>
5821+
<p><a href="/nginx.html">Nginx</a> is the second most commonly used server for the
5822+
top 100,000 websites and often serves as a reverse proxy for
5823+
<a href="/wsgi-servers.html">Python WSGI servers</a>.</p>
58215824
</li>
58225825
<li>
5823-
<p><a href="https://caddyserver.com/">Caddy</a> is a newcomer to the web server scene
5826+
<p><a href="/caddy.html">Caddy</a> is a newcomer to the web server scene
58245827
and is focused on serving the HTTP/2 protocol with HTTPS. </p>
58255828
</li>
58265829
</ul>

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-13T09:25:23Z</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-13T17:37:40Z</updated></feed>

source/content/pages/07-web-app-deployment/06-web-servers.markdown

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@ The conceptual web server idea can be implemented in various ways. The
3434
following web server implementations each have varying features, extensions
3535
and configurations.
3636

37-
* [Apache HTTP Server](https://httpd.apache.org/)
37+
* The [Apache HTTP Server](/apache-http-server.html) has been the most
38+
commonly deployed web server on the Internet for 20+ years.
3839

39-
* [Nginx](http://nginx.org/en/)
40+
* [Nginx](/nginx.html) is the second most commonly used server for the
41+
top 100,000 websites and often serves as a reverse proxy for
42+
[Python WSGI servers](/wsgi-servers.html).
4043

41-
* [Caddy](https://caddyserver.com/) is a newcomer to the web server scene
44+
* [Caddy](/caddy.html) is a newcomer to the web server scene
4245
and is focused on serving the HTTP/2 protocol with HTTPS.
4346

47+
4448
## Client requests
4549
A client that sends a request to a web server is usually a browser such
4650
as Internet Explorer, Firefox, or Chrome, but it can also be a

web-servers.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,16 @@ <h2>Web server implementations</h2>
5454
and configurations.</p>
5555
<ul>
5656
<li>
57-
<p><a href="https://httpd.apache.org/">Apache HTTP Server</a></p>
57+
<p>The <a href="/apache-http-server.html">Apache HTTP Server</a> has been the most
58+
commonly deployed web server on the Internet for 20+ years.</p>
5859
</li>
5960
<li>
60-
<p><a href="http://nginx.org/en/">Nginx</a></p>
61+
<p><a href="/nginx.html">Nginx</a> is the second most commonly used server for the
62+
top 100,000 websites and often serves as a reverse proxy for
63+
<a href="/wsgi-servers.html">Python WSGI servers</a>.</p>
6164
</li>
6265
<li>
63-
<p><a href="https://caddyserver.com/">Caddy</a> is a newcomer to the web server scene
66+
<p><a href="/caddy.html">Caddy</a> is a newcomer to the web server scene
6467
and is focused on serving the HTTP/2 protocol with HTTPS. </p>
6568
</li>
6669
</ul>

0 commit comments

Comments
 (0)