Properly enable gzip compression in nginx config
ci/woodpecker/pr/build-amd64 Pipeline is pending Details
ci/woodpecker/pr/build-arm64 Pipeline is pending Details
ci/woodpecker/pr/docs Pipeline is pending Details
ci/woodpecker/pr/lint Pipeline is pending Details
ci/woodpecker/pr/test Pipeline is pending Details

Given that there's already a bunch of other gzip options set in the
nginx config, it's likely someone forgot to actually add the setting to
turn gzip on, so let's fix that.
This commit is contained in:
Norm 2024-03-14 00:06:59 -04:00
parent 889b57df82
commit 9cec6aa5a1
1 changed files with 1 additions and 0 deletions

View File

@ -58,6 +58,7 @@ server {
ssl_stapling on;
ssl_stapling_verify on;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;