📜  使用 nginx 的整体配置 gzip 压缩 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:10.445000             🧑  作者: Mango

代码示例1
server {
    gzip on;
    gzip_types      text/plain application/xml;
    gzip_proxied    no-cache no-store private expired auth;
    gzip_min_length 1000;
    ...
}