Gzip will be applied by default,and seen in Network tab. Under Network Conditions should be check/uncheck the browser’s available compression options and I should fetch the request again.
I do not see any information per instructions. How to enable verified GZIP.
I see br (brotli) by default. But you can verify that gzip is working like this:
curl -X HEAD -I -sH 'Accept-encoding: gzip' https://www.toplisek.net/ | grep content-encoding
This should show the content encodeing technice used when forcing gzip and should validate that gzip works.
Same ofc applies for brotli:
curl -X HEAD -I -sH 'Accept-encoding: br' https://www.toplisek.net/ | grep content-encoding
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.