nginx gzip 與 gzip_static

沒有程式碼的程式世界發表於2020-12-12

nginx gzip 與 gzip_static

nginx gzip 與 gzip_static
生效區別:response headers 中 ETag 存在 W/ ,說明使用的實時壓縮gzip;
不存在且有壓縮效果使用的gzip_static;
gzip_static 需要前端生成相應的gz結尾的壓縮檔案

要使用static_gzip需要在編譯的時候把static_gzip模組編譯進去:
./configure --with-http_gzip_static_module
並重新安裝
make && make install

相關文章