summaryrefslogtreecommitdiff
path: root/web_proxy.py
diff options
context:
space:
mode:
authoryvesf <yvesf@pinky.(none)>2010-11-24 22:43:56 +0100
committeryvesf <yvesf@pinky.(none)>2010-11-24 22:43:56 +0100
commit9f105d305dda4a0b53f42c215e866d482b048007 (patch)
tree30e6913e39b29dc1f157071e6292dbe309a4f17c /web_proxy.py
parentff87c6dcaa65c3b1ac366a0ce05b9d6ecf7445b6 (diff)
downloadbooksearch-9f105d305dda4a0b53f42c215e866d482b048007.tar.gz
booksearch-9f105d305dda4a0b53f42c215e866d482b048007.zip
gunicorn related cleanup
Diffstat (limited to 'web_proxy.py')
-rw-r--r--web_proxy.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/web_proxy.py b/web_proxy.py
index ec5fd55..903c667 100644
--- a/web_proxy.py
+++ b/web_proxy.py
@@ -34,7 +34,8 @@ class ReverseProxied(object):
return self.app(environ, start_response)
from web import app
+app.debug = True
+app.wsgi_app = ReverseProxied(app.wsgi_app)
+
if __name__ == "__main__":
- app.debug = True
- app.wsgi_app = ReverseProxied(app.wsgi_app)
- app.run(host="0.0.0.0", port=8000)
+ app.run(host="0.0.0.0", port=8000)