From 05ebba9f1a9875b3e0f5faf42c71fbafc031d37e Mon Sep 17 00:00:00 2001 From: Prai'ns Date: Tue, 18 Aug 2026 12:30:09 +0300 Subject: [PATCH] fix: compress dashboard over HTTPS (#10828) Co-authored-by: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> --- app/Models/Server.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Models/Server.php b/app/Models/Server.php index 1acc4e45f..0f5a35364 100644 --- a/app/Models/Server.php +++ b/app/Models/Server.php @@ -736,6 +736,9 @@ public function setupDynamicProxyConfiguration() ]; $traefik_dynamic_conf['http']['routers']['coolify-https'] = [ + 'middlewares' => [ + 0 => 'gzip', + ], 'entryPoints' => [ 0 => 'https', ], @@ -791,6 +794,7 @@ public function setupDynamicProxyConfiguration() $schema = $url->getScheme(); $caddy_file = " $schema://$host { + encode zstd gzip handle /app/* { reverse_proxy coolify-realtime:6001 }