browser-nginx 压缩优先级

browser-nginx 压缩优先级

启用 brotli 和 gzip 压缩的 Nginx 回复:

curl -s -I -H 'Accept-Encoding: br,gzip,deflate' https://something
content-encoding: gzip
curl -s -I -H 'Accept-Encoding: br'  https://something
content-encoding: br

有没有可能在浏览器/nginx 中设置一种优先级?当支持多个选项时,Nginx 为什么以及如何决定回复“gzip”?

相关内容