nginx開啟gzip緩存 2019-01-24

配置緩存nginx.conf


#user  nobody;
worker_processes  1;

#error_log  /opt/proj/nginx/logs/error.log;
#error_log  /opt/proj/nginx/logs/error.log  notice;
#error_log  /opt/proj/nginx/logs/error.log  info;

pid        /opt/nginx/nginx.pid;


events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    #gzip  on;
    
    #以下是開啟gzip壓縮緩存start
    gzip on;
    #該指令用于開啟或關(guān)閉gzip模塊(on/off)

    gzip_buffers 16 8k;
    #設(shè)置系統(tǒng)獲取幾個單位的緩存用于存儲gzip的壓縮結(jié)果數(shù)據(jù)流。16 8k代表以8k為單位住闯,安裝原始數(shù)據(jù)大小以8k為單位的16倍申請內(nèi)存

    gzip_comp_level 6;
    #gzip壓縮比赋除,數(shù)值范圍是1-9,1壓縮比最小但處理速度最快,9壓縮比最大但處理速度最慢

    gzip_http_version 1.1;
    #識別http的協(xié)議版本

    gzip_min_length 256;
    #設(shè)置允許壓縮的頁面最小字節(jié)數(shù)好芭,頁面字節(jié)數(shù)從header頭得content-length中進行獲取。默認值是0昏苏,不管頁面多大都壓縮弦叶。這里我設(shè)置了為256

    gzip_proxied any;
    #這里設(shè)置無論header頭是怎么樣俊犯,都是無條件啟用壓縮

    gzip_vary on;
    #在http header中添加Vary: Accept-Encoding ,給代理服務(wù)器用的

    gzip_types
        text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml
        text/javascript application/javascript application/x-javascript
        text/x-json application/json application/x-web-app-manifest+json
        text/css text/plain text/x-component
        font/opentype font/ttf application/x-font-ttf application/vnd.ms-fontobject
        image/x-icon;
    #進行壓縮的文件類型,這里特別添加了對字體的文件類型

    gzip_disable "MSIE [1-6]\.(?!.*SV1)";
    #禁用IE 6 gzip
    #開啟gzip壓縮緩存end
    
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
          proxy_pass http://127.0.0.1:8080;  

        }

        location /distc/ {
            #所有靜態(tài)文件直接讀取硬盤
            root   /opt/proj/;
            autoindex   on;
            #緩存30天
            expires 30d;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
}

驗證:

圖片.png

測試 移動網(wǎng)絡(luò)熱點測試

  • 沒加入nginx
    8s以上的文件


    a.png
  • 加入nginx并且開啟nginx的gzip緩存


    b.png
pdfmake.min.js時間:18.03s-->10.83,少了8s左右
vfs_fonts.js時間: 24.53s--> 11.82s ,少 13s左右
daterangepicker.js時間: 21.66s—> 3.77s ,少了17s

參考地址:https://www.cnblogs.com/mitang/p/4477220.html

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市伤哺,隨后出現(xiàn)的幾起案子燕侠,更是在濱河造成了極大的恐慌者祖,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贬循,死亡現(xiàn)場離奇詭異咸包,居然都是意外死亡,警方通過查閱死者的電腦和手機杖虾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來媒熊,“玉大人奇适,你說我怎么就攤上這事÷ⅲ” “怎么了嚷往?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長柠衅。 經(jīng)常有香客問我皮仁,道長,這世上最難降的妖魔是什么菲宴? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任贷祈,我火速辦了婚禮,結(jié)果婚禮上喝峦,老公的妹妹穿的比我還像新娘势誊。我一直安慰自己,他們只是感情好谣蠢,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布粟耻。 她就那樣靜靜地躺著,像睡著了一般眉踱。 火紅的嫁衣襯著肌膚如雪挤忙。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天谈喳,我揣著相機與錄音册烈,去河邊找鬼。 笑死叁执,一個胖子當著我的面吹牛茄厘,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播谈宛,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼次哈,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了吆录?” 一聲冷哼從身側(cè)響起窑滞,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后哀卫,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體巨坊,經(jīng)...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年此改,在試婚紗的時候發(fā)現(xiàn)自己被綠了趾撵。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡共啃,死狀恐怖占调,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情移剪,我是刑警寧澤究珊,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站纵苛,受9級特大地震影響剿涮,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜攻人,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一取试、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧贝椿,春花似錦想括、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至渣窜,卻和暖如春铺根,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背乔宿。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工位迂, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人详瑞。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓掂林,卻偏偏與公主長得像,于是被迫代替她去往敵國和親坝橡。 傳聞我的和親對象是個殘疾皇子泻帮,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內(nèi)容