Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 512 Bytes

GZip.md

File metadata and controls

23 lines (18 loc) · 512 Bytes

Ubuntu 24.04♥中的TYPO3 —— 资源压缩

修改站点配置文件/etc/nginx/conf.d/domain.tld.conf

server {
    ...
    location ~ \.js\.gzip$ {
        add_header Content-Encoding gzip;
        gzip off;
        types { text/javascript gzip; }
    }
    location ~ \.css\.gzip$ {
        add_header Content-Encoding gzip;
        gzip off;
        types { text/css gzip; }
    }
}

重启Nginx

service nginx restart

<< 返回