From 3adfee5160dc7141c68674371ce20a17618aa0a3 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Tue, 3 Feb 2026 08:34:23 +0000 Subject: [PATCH] Disable Gzip compression for HTTPStatsServer configuration --- repeater/web/http_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repeater/web/http_server.py b/repeater/web/http_server.py index a2ac1f8..6f3c5e1 100644 --- a/repeater/web/http_server.py +++ b/repeater/web/http_server.py @@ -284,8 +284,8 @@ class HTTPStatsServer: config = { "/": { "tools.sessions.on": False, - "tools.gzip.on": True, - "tools.gzip.mime_types": ["application/json", "text/html", "text/plain"], + # "tools.gzip.on": True, + # "tools.gzip.mime_types": ["application/json", "text/html", "text/plain"], # Ensure proper content types for static files "tools.staticfile.content_types": { 'js': 'application/javascript',