]> git.ipfire.org Git - people/shoehn/ipfire.org.git/commitdiff
Change listen port to 8001.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 29 Jan 2010 16:35:28 +0000 (17:35 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 29 Jan 2010 16:35:28 +0000 (17:35 +0100)
www/webapp.py

index 13a2bb3be970fb81bd8d318084909f7e6cca6cdb..eae4848994b449f6c014a0cfd37075b9f11805b7 100755 (executable)
@@ -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()