From: Michael Tremer Date: Fri, 29 Jan 2010 16:35:28 +0000 (+0100) Subject: Change listen port to 8001. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0942aa051938cc021e7f6f0e68def852ad48618d;p=ipfire.org.git Change listen port to 8001. --- 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()