From a9652bf8e06d1ed3241759403ca9e30adc346c9f Mon Sep 17 00:00:00 2001 From: Leone Martins Date: Tue, 10 Mar 2026 16:31:44 -0300 Subject: [PATCH] fix(docker): remove invalid must-revalidate parameter from gzip_proxied The Nginx container was trapped in a crash loop during boot because 'must-revalidate' is an invalid parameter for the 'gzip_proxied' directive in .docker/nginx.conf. Removed the parameter to restore stability. --- .docker/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 575854d..efce71e 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -8,7 +8,7 @@ server { gzip on; gzip_vary on; gzip_min_length 1024; - gzip_proxied expired no-cache no-store private must-revalidate auth; + gzip_proxied expired no-cache no-store private auth; gzip_types text/plain text/css