From e143cc1843f55daa907217fc3d463ea99de27af0 Mon Sep 17 00:00:00 2001 From: Sam Saffron Date: Thu, 11 Apr 2019 12:41:16 +1000 Subject: [PATCH] FEATURE: enable NGINX brotli support unconditionally Previously we would rely on enable brotli in the web template to turn this on, going forward this is default on --- config/nginx.sample.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nginx.sample.conf b/config/nginx.sample.conf index d98fe999961..7a8429f0f36 100644 --- a/config/nginx.sample.conf +++ b/config/nginx.sample.conf @@ -119,7 +119,7 @@ server { location ~ ^/assets/(?.+)$ { expires 1y; # asset pipeline enables this - # brotli_static on; + brotli_static on; gzip_static on; add_header Cache-Control public,immutable; # HOOK in asset location (used for extensibility)