From 49a91a46da4d38e21ea1d92cadcb4822c75dcbc6 Mon Sep 17 00:00:00 2001 From: Benjamin Schmitz <66966223+bensofficial@users.noreply.github.com> Date: Thu, 2 Jan 2025 19:38:33 +0100 Subject: [PATCH] Development: Enable gzip compression for nginx (#10092) --- docker/nginx/nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index a825fdf6a98f..f7c2dde8b0d8 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -32,7 +32,8 @@ http { keepalive_timeout 65; - #gzip on; + gzip on; + gzip_types text/plain application/javascript application/x-javascript text/javascript text/xml text/css; # specific Artemis value from the Artemis ansible collection server_names_hash_bucket_size 256;