File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
source/content/pages/03-deployment Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 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-07-24T10:49:45Z </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-07-24T12:26:03Z </updated ></feed >
Original file line number Diff line number Diff line change @@ -101,6 +101,12 @@ WSGI v1.0 is superseded by
101101[ PEP 3333] ( http://www.python.org/dev/peps/pep-3333/ ) , which defines the
102102v1.0.1 WSGI standard.
103103
104+ [ wsgiref in Python 2.x] ( https://docs.python.org/2/library/wsgiref.html ) and
105+ [ wsgiref in Python 3.x] ( https://docs.python.org/3.4/library/wsgiref.html )
106+ are the reference implementations of the WSGI specification built into
107+ Python's standard library so it can be used to build WSGI servers and
108+ applications.
109+
104110
105111## Example web server configuration
106112A web server's configuration specifies what requests should be passed to
Original file line number Diff line number Diff line change @@ -116,6 +116,11 @@ <h2>Official WSGI specifications</h2>
116116WSGI v1.0 is superseded by
117117< a href ="http://www.python.org/dev/peps/pep-3333/ "> PEP 3333</ a > , which defines the
118118v1.0.1 WSGI standard.</ p >
119+ < p > < a href ="https://docs.python.org/2/library/wsgiref.html "> wsgiref in Python 2.x</ a > and
120+ < a href ="https://docs.python.org/3.4/library/wsgiref.html "> wsgiref in Python 3.x</ a >
121+ are the reference implementations of the WSGI specification built into
122+ Python's standard library so it can be used to build WSGI servers and
123+ applications.</ p >
119124< h2 > Example web server configuration</ h2 >
120125< p > A web server's configuration specifies what requests should be passed to
121126the WSGI server to process. Once a request is processed and generated by the
You can’t perform that action at this time.
0 commit comments