diff --git a/webfront.py b/webfront.py index 1d6eade..5acb6c1 100755 --- a/webfront.py +++ b/webfront.py @@ -401,6 +401,8 @@ def main(): } application = tornado.web.Application([ + (r'/(crossdomain\.xml)', tornado.web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), + "static/")}), (r"/static/(.*)", tornado.web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), "static/")}), (r"/", MainHandler),