File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
source/content/pages/07-wsgi-servers Expand file tree Collapse file tree 3 files changed +4
-4
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-03-15T10:34:48Z </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-03-15T10:36:58Z </updated ></feed >
Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ Why use WSGI and not just point a web server directly at an application?
5151 The segregation of responsibilities is important for efficiently scaling
5252 web traffic.
5353
54+ <img src =" theme/img/web-browser-server-wsgi.png " alt =" WSGI Server <-> Web server <-> Browser " width =" 100% " class =" technical-diagram " />
55+
5456WSGI is by design a simple standard interface for running Python code. As
5557a web developer you won't need to know much more than
5658
@@ -82,8 +84,6 @@ WSGI v1.0 is superseded by
8284[ PEP 3333] ( http://www.python.org/dev/peps/pep-3333/ ) , which defines the
8385v1.0.1 WSGI standard.
8486
85- <img src =" theme/img/web-browser-server-wsgi.png " alt =" WSGI Server <-> Web server <-> Browser " width =" 100% " class =" technical-diagram " />
86-
8787
8888## Example configuration
8989A web server's configuration specifies what requests should be passed to
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ <h2>WSGI's Purpose</h2>
116116 web traffic.</ p >
117117</ li >
118118</ ul >
119+ < p > < img src ="theme/img/web-browser-server-wsgi.png " alt ="WSGI Server <-> Web server <-> Browser " width ="100% " class ="technical-diagram " /></ p >
119120< p > WSGI is by design a simple standard interface for running Python code. As
120121a web developer you won't need to know much more than</ p >
121122< ul >
@@ -147,7 +148,6 @@ <h2>Official WSGI specifications</h2>
147148WSGI v1.0 is superseded by
148149< a href ="http://www.python.org/dev/peps/pep-3333/ "> PEP 3333</ a > , which defines the
149150v1.0.1 WSGI standard.</ p >
150- < p > < img src ="theme/img/web-browser-server-wsgi.png " alt ="WSGI Server <-> Web server <-> Browser " width ="100% " class ="technical-diagram " /></ p >
151151< h2 > Example configuration</ h2 >
152152< p > A web server's configuration specifies what requests should be passed to
153153the 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