gzip as much as makes sense

This commit is contained in:
Jake Howard 2023-12-16 17:58:15 +00:00
parent 92052a3d0a
commit 930cf87084
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -25,8 +25,14 @@ http {
sendfile on;
tcp_nopush on;
# Gzip basically everything if we can
gzip on;
gzip_vary on;
gzip_types *;
gzip_proxied any;
gzip_comp_level 3;
gzip_min_length 1024;
keepalive_timeout 65;