From: Michael Tremer Date: Mon, 4 Mar 2024 12:43:40 +0000 (+0000) Subject: fireinfo: Do not migrate the static handler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=083436b474fd0c7ac62846e3c79f458318966a35;p=ipfire.org.git 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 --- 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),