From 0942aa051938cc021e7f6f0e68def852ad48618d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 29 Jan 2010 17:35:28 +0100 Subject: [PATCH] Change listen port to 8001. --- www/webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/webapp.py b/www/webapp.py index 13a2bb3b..eae48489 100755 --- a/www/webapp.py +++ b/www/webapp.py @@ -7,8 +7,8 @@ from webapp import Application application = Application() if __name__ == "__main__": - http_server = tornado.httpserver.HTTPServer(application) - http_server.listen(8080) + http_server = tornado.httpserver.HTTPServer(application, xheaders=True) + http_server.listen(8001) try: tornado.ioloop.IOLoop.instance().start() -- 2.47.3