diff --git a/nginx.conf b/nginx.conf index a9f8f1e..f274f8c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -8,15 +8,16 @@ location /INSTANCE/data/ { location ~ trace_recent { gzip off; add_header Cache-Control "public, max-age=10"; - add_header Content-Encoding "br"; + add_header Content-Encoding "gzip"; } location ~ trace_full { gzip off; add_header Cache-Control "public, max-age=60"; - add_header Content-Encoding "br"; + add_header Content-Encoding "gzip"; } } location ~ globe_.*\.json$ { + gzip off; add_header Cache-Control "public, max-age=2"; add_header Content-Encoding "gzip"; } @@ -26,7 +27,7 @@ location /INSTANCE/globe_history/ { alias /var/globe_history/; add_header Cache-Control "public, max-age=600"; add_header Content-Type "application/json"; - add_header Content-Encoding "br"; + add_header Content-Encoding "gzip"; } location /INSTANCE/chunks/ {