File tree Expand file tree Collapse file tree 5 files changed +44
-1
lines changed
Expand file tree Collapse file tree 5 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 1+ title: mod_wsgi
2+ category: page
3+ slug: mod-wsgi
4+ sortorder: 0524
5+ toc: False
6+ sidebartitle: mod_wsgi
7+ meta: mod_wsgi is a Web Server Gateway Interface (WSGI) implementation that runs Python web application code.
8+
9+
10+ # mod_wsgi
11+ [ mod_wsgi] ( https://modwsgi.readthedocs.io/en/develop/ )
12+ ([ source code] ( https://github.com/GrahamDumpleton/mod_wsgi ) )
13+ is an implementation of the [ Web Server Gateway Interface] ( /wsgi-servers.html )
14+ specification for running Python code in the
15+ [ Apache HTTP Server] ( /apache-http-server.html ) . mod_wsgi is implemented
16+ as an Apache HTTP Server module and it supports both
17+ [ Python 2 and Python 3 code] ( /python-2-or-3.html ) .
18+
19+
20+ ### mod_wsgi resources
21+ * The [ official documentation] ( https://modwsgi.readthedocs.io/en/develop/ )
22+ is wonderful for getting started as well as digging into how to
23+ configure your server for better security.
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ FlaskBB is provided as open source
5353
5454FlaskBB's code examples can be found on:
5555
56+ * [ flask redirect] ( /flask-redirect-examples.html )
5657* [ flask request] ( /flask-request-examples.html )
5758
5859
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ on GitHub.
1616
1717## 2019
1818### August
19+ * Added stub page for [ mod_wsgi] ( /mod-wsgi.html ) .
1920* Merged [ PR #215 ] ( https://github.com/mattmakai/fullstackpython.com/pull/215 )
2021 to fix a typo on the [ serverless] ( /serverless.html ) page. Thanks
2122 [ Kyle] ( https://github.com/kylekizirian ) !
Original file line number Diff line number Diff line change 1+ < h3 > What else do you want to learn about deployments?</ h3 >
2+ < div class ="row ">
3+ < div class ="c4 ">
4+ < div class ="well select-next ">
5+ {% include "choices/buttons/wsgi-servers.html" %}
6+ </ div >
7+ </ div >
8+ < div class ="c4 ">
9+ < div class ="well select-next ">
10+ {% include "choices/buttons/servers.html" %}
11+ </ div >
12+ </ div >
13+ < div class ="c4 ">
14+ < div class ="well select-next ">
15+ {% include "choices/buttons/docker.html" %}
16+ </ div >
17+ </ div >
18+ </ div >
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ <h4>5.5 <a href="/web-servers.html">Web servers</a></h4>
171171< h4 > 5.6 < a href ="/wsgi-servers.html "> WSGI servers</ a > </ h4 >
172172< div class ="tc "> < a href ="/green-unicorn-gunicorn.html "> Green Unicorn</ a > </ div >
173173< div class ="tc "> < a href ="/uwsgi.html "> uWSGI</ a > </ div >
174- < div class ="tc sn " > mod_wsgi</ div >
174+ < div class ="tc " > < a href =" /mod-wsgi.html " > mod_wsgi</ a > </ div >
175175< h4 > 5.7 < a href ="/continuous-integration.html "> Continuous integration</ a > </ h4 >
176176< div class ="tc "> < a href ="/jenkins.html "> Jenkins</ a > </ div >
177177< div class ="tc sn "> GoCD</ div >
You can’t perform that action at this time.
0 commit comments