【詳情參考】範仁義:
nginx中如何設定gzip(總結).
log: /var/log/nginx/*
src/modules : /usr/lib/nginx/modules/*
sbin: /etc/nginx/*
本人nginx.conf在ubuntu18的/etc/nginx/nginx.conf,進入資料夾後,把gzip的引數寫在server中,在location之前設定。
gzip_proxied any
off – 關閉所有的**結果資料壓縮
expired – 如果header中包含」expires」頭資訊,啟用壓縮
no-cache – 如果header中包含」cache-control:no-cache」頭資訊,啟用壓縮
no-store – 如果header中包含」cache-control:no-store」頭資訊,啟用壓縮
private – 如果header中包含」cache-control:private」頭資訊,啟用壓縮
no_last_modified – 啟用壓縮,如果header中包含」last_modified」頭資訊,啟用壓縮
no_etag – 啟用壓縮,如果header中包含「etag」頭資訊,啟用壓縮
auth – 啟用壓縮,如果header中包含「authorization」頭資訊,啟用壓縮
any – 無條件壓縮所有結果資料
gzip_vary on|off
gzip_disable 「msie [1-6].」
gzip_types 針對那種傳輸的檔案進行壓縮
字型型別副檔名 content-type
.ttf font/ttf
.otf font/opentype
.woff font/x-woff
.svg image/svg+xml
Nginx優化之gzip壓縮
gzip配置的常用引數 gzip on off 是否開啟gzip gzip buffers 32 4k 16 8k 緩衝 壓縮在記憶體中緩衝幾塊?每塊多大?gzip comp level 1 9 推薦6 壓縮級別 級別越高,壓的越小,越浪費cpu計算資源 gzip disable 正則匹配ua 什麼...
Nginx的gzip壓縮實現效能優化
通過nginx的gzip模組開啟gzip壓縮功能,這樣nginx伺服器會根據配置的策略對傳送的內容進行壓縮,在使用者接收到返回內容之前對其進行處理,以壓縮後的資料展現給客戶。這樣不僅能夠提公升使用者感知體驗,也能節省出口頻寬。修改nginx配置檔案 預設路徑為 usr local nginx con...
nginx 開啟gzip壓縮
一 背景介紹 歷史遺留問題,在專案建立初期前端力量薄弱,大部分image js css與業務應用存放在一起,未上傳到cdn中,最終導致 訪問緩慢,經過排查由於靜態資源大量消耗頻寬。接下來介紹通過nginx的gzip對靜態資源進行壓縮,減少頻寬消耗。二 gzip gzip是gnu zip的縮寫,它是乙...