You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/content/pages/03-deployment/0311-wsgi-servers.markdown
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,8 @@ The following are WSGI servers based on community recommendations.
156
156
*[mod\_wsgi](https://code.google.com/p/modwsgi/) is an Apache module
157
157
implementing the WSGI specification.
158
158
159
+
*[CherryPy](https://github.com/cherrypy/cherrypy) is a pure Python web
160
+
server that also functions as a WSGI server.
159
161
160
162
161
163
## WSGI resources
@@ -191,6 +193,10 @@ The following are WSGI servers based on community recommendations.
191
193
for their specific tested scenarios and not quickly extrapolated as general
192
194
"this server is faster than this other server" results.
193
195
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
Copy file name to clipboardExpand all lines: wsgi-servers.html
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,10 @@ <h2>WSGI servers</h2>
173
173
<p><ahref="https://code.google.com/p/modwsgi/">mod_wsgi</a> is an Apache module
174
174
implementing the WSGI specification.</p>
175
175
</li>
176
+
<li>
177
+
<p><ahref="https://github.com/cherrypy/cherrypy">CherryPy</a> is a pure Python web
178
+
server that also functions as a WSGI server.</p>
179
+
</li>
176
180
</ul>
177
181
<h2>WSGI resources</h2>
178
182
<ul>
@@ -215,6 +219,11 @@ <h2>WSGI resources</h2>
215
219
for their specific tested scenarios and not quickly extrapolated as general
216
220
"this server is faster than this other server" results.</p>
217
221
</li>
222
+
<li>
223
+
<p><ahref="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
0 commit comments