From 85e7001ec25a82ba99541a2b96c26a5d350b5ed6 Mon Sep 17 00:00:00 2001 From: Mohamed Elmoslemany <117270519+mo-c4t@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:12:50 +0100 Subject: [PATCH] use gzip encoding in nginx config --- nginx.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index b01d3cee8..ac9841bf2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -16,4 +16,8 @@ server { } include /etc/nginx/extra-conf.d/*.conf; -} \ No newline at end of file + + gzip on; + gzip_types *; + gzip_proxied no-cache no-store private expired auth; +}