From 076163ba2d46627fd5677a260a54c9217fd98661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sza=C5=82owski?= Date: Tue, 18 Mar 2025 13:20:14 +0100 Subject: [PATCH] chore: add missing icons to the nginx --- govtool/frontend/nginx.conf | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/govtool/frontend/nginx.conf b/govtool/frontend/nginx.conf index a6e3831b2..c62ab6c12 100644 --- a/govtool/frontend/nginx.conf +++ b/govtool/frontend/nginx.conf @@ -3,28 +3,6 @@ server { root /usr/share/nginx/html; error_page 503 @maintenance; - gzip on; - gzip_static on; - gzip_vary on; - gzip_proxied any; - gzip_comp_level 6; - gzip_buffers 16 8k; - gzip_http_version 1.1; - gzip_types text/plain text/css application/javascript application/json application/xml application/xml+rss text/javascript; - - location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|svg|woff2?)$ { - expires 1y; - add_header Cache-Control "public, max-age=31536000, immutable"; - try_files $uri =404; - - brotli_static on; - - types { - application/javascript js; - text/css css; - } - } - location / { index index.html; try_files $uri $uri /index.html;