From 083436b474fd0c7ac62846e3c79f458318966a35 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 4 Mar 2024 12:43:40 +0000 Subject: [PATCH] fireinfo: Do not migrate the static handler This is only needed when running the webapp for development purposes without a web server in front of it that would serve static files. Signed-off-by: Michael Tremer --- src/web/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/web/__init__.py b/src/web/__init__.py index de561c7a..31aa426a 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -186,7 +186,6 @@ class Application(tornado.web.Application): (r"/fireinfo/processors", fireinfo.ProcessorsHandler), (r"/fireinfo/releases", fireinfo.ReleasesHandler), (r"/fireinfo/send/([a-z0-9]+)", fireinfo.ProfileSendHandler), - (r"/fireinfo/static/(.*)", tornado.web.StaticFileHandler, { "path" : self.settings.get("static_path") }), # Lists (r"/lists", lists.IndexHandler), -- 2.47.3