lol

Merge pull request #45659 from vincentbernat/fix/nginx-gzip

Small nginx tweaks

authored by

Jörg Thalheim and committed by
GitHub
6a0a12a9 e5af203a

+12 -2
+12 -2
nixos/modules/services/web-servers/nginx/default.nix
··· 92 92 gzip on; 93 93 gzip_disable "msie6"; 94 94 gzip_proxied any; 95 - gzip_comp_level 9; 96 - gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; 95 + gzip_comp_level 5; 96 + gzip_types 97 + application/atom+xml 98 + application/javascript 99 + application/json 100 + application/xml 101 + application/xml+rss 102 + image/svg+xml 103 + text/css 104 + text/javascript 105 + text/plain 106 + text/xml; 97 107 gzip_vary on; 98 108 ''} 99 109