From 85f5b0c97195b9a704792de8e8727485d36b6437 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 22 Feb 2024 19:10:40 +0000 Subject: [PATCH] nopaste: No longer allow logging in Signed-off-by: Michael Tremer --- src/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/__init__.py b/src/web/__init__.py index 0ea16fcd..cc13fcf0 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -335,7 +335,7 @@ class Application(tornado.web.Application): # Serve any static files (r"/static/(.*)", tornado.web.StaticFileHandler, { "path" : self.settings.get("static_path") }), - ] + authentication_handlers) + ]) # location.ipfire.org self.add_handlers(r"location\.([a-z]+\.dev\.)?ipfire\.org", [ -- 2.47.3