開啟nginx的gzip壓縮,網(wǎng)頁中的js,css等靜態(tài)資源的大小會大大的減少從而節(jié)約大量的帶寬,提高傳輸效率,給用戶快的體驗(yàn)。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供黎川網(wǎng)站建設(shè)、黎川做網(wǎng)站、黎川網(wǎng)站設(shè)計(jì)、黎川網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、黎川企業(yè)網(wǎng)站模板建站服務(wù),十載黎川做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
nginx實(shí)現(xiàn)資源壓縮的原理是通過默認(rèn)集成的ngx_http_gzip_module
模塊攔截請求,并對需要做gzip的類型做gzip,使用非常簡單直接開啟,設(shè)置選項(xiàng)即可。。
gzip生效后的請求頭和響應(yīng)頭
Request Headers: Accept-Encoding:gzip,deflate,sdch Response Headers: Content-Encoding:gzip Cache-Control:max-age240
從http協(xié)議的角度看,請求頭聲明acceopt-encoding:gzip deflate sdch(是指壓縮算法,其中sdch是google自己家推的一種壓縮方式)
服務(wù)器-〉回應(yīng)-〉把內(nèi)容用gzip壓縮-〉發(fā)送給瀏覽器-》瀏覽器解碼gzip->接收gzip壓縮內(nèi)容
gzip的常用配置參數(shù)
靜態(tài)頁面index.html
演示nginx做gzip壓縮 nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx實(shí)現(xiàn)gzip壓縮,減少帶寬的占用,同時(shí)提升網(wǎng)站速度
nginx的配置
server{ listen 80; server_name localhost 192.168.0.96; gzip on; gzip_buffers 32 4k; gzip_comp_level 6; gzip_min_length 200; gzip_types application/javascript application/x-javascript text/javascript text/xml text/css; gzip_vary off; root /Users/lidong/Desktop/wwwroot/test; index index.php index.html index.htm; access_log /Users/lidong/wwwlogs/access.log; error_log /Users/lidong/wwwlogs/error.log; location ~ [^/]\.php(/|$) { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
為使用gzip前的頁面請求:
開啟了gzip頁面的請求:
注意
總結(jié)
以上所述是小編給大家介紹的nginx中g(shù)zip壓縮提升網(wǎng)站速度的實(shí)現(xiàn)方法,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時(shí)回復(fù)大家的!