Skip to content

Commit c401842

Browse files
committed
adding new wsgi server resource
1 parent 774cb22 commit c401842

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
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-06-01T08:42:28Z</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-06-01T08:51:45Z</updated></feed>

source/content/pages/03-deployment/0311-wsgi-servers.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ The following are WSGI servers based on community recommendations.
156156
* [mod\_wsgi](https://code.google.com/p/modwsgi/) is an Apache module
157157
implementing the WSGI specification.
158158

159+
* [CherryPy](https://github.com/cherrypy/cherrypy) is a pure Python web
160+
server that also functions as a WSGI server.
159161

160162

161163
## WSGI resources
@@ -191,6 +193,10 @@ The following are WSGI servers based on community recommendations.
191193
for their specific tested scenarios and not quickly extrapolated as general
192194
"this server is faster than this other server" results.
193195

196+
* [How to Deploy Python WSGI Applications with CherryPy](https://www.digitalocean.com/community/articles/how-to-deploy-python-wsgi-applications-using-a-cherrypy-web-server-behind-nginx)
197+
answers why CherryPy is a simple combination web and WSGI server along with
198+
how to use it.
199+
194200

195201
## WSGI servers learning checklist
196202
<i class="fa fa-check-square-o"></i>

wsgi-servers.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,10 @@ <h2>WSGI servers</h2>
173173
<p><a href="https://code.google.com/p/modwsgi/">mod_wsgi</a> is an Apache module
174174
implementing the WSGI specification.</p>
175175
</li>
176+
<li>
177+
<p><a href="https://github.com/cherrypy/cherrypy">CherryPy</a> is a pure Python web
178+
server that also functions as a WSGI server.</p>
179+
</li>
176180
</ul>
177181
<h2>WSGI resources</h2>
178182
<ul>
@@ -215,6 +219,11 @@ <h2>WSGI resources</h2>
215219
for their specific tested scenarios and not quickly extrapolated as general
216220
"this server is faster than this other server" results.</p>
217221
</li>
222+
<li>
223+
<p><a href="https://www.digitalocean.com/community/articles/how-to-deploy-python-wsgi-applications-using-a-cherrypy-web-server-behind-nginx">How to Deploy Python WSGI Applications with CherryPy</a>
224+
answers why CherryPy is a simple combination web and WSGI server along with
225+
how to use it.</p>
226+
</li>
218227
</ul>
219228
<h2>WSGI servers learning checklist</h2>
220229
<p><i class="fa fa-check-square-o"></i>

0 commit comments

Comments
 (0)