facebook twitter hatena line email

Linux/nginx/パフォーマンス向上

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 11:59時点における36.55.238.17 (トーク)による版 (ページの作成:「vi /etc/nginx/conf.d/sample1.localhost.conf http { gzip on; gzip_http_version 1.0; gzip_types text/plain text/xml...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

vi /etc/nginx/conf.d/sample1.localhost.conf

http {
   gzip              on;
   gzip_http_version 1.0;
   gzip_types        text/plain
                     text/xml
                     text/css
                     application/xml
                     application/xhtml+xml
                     application/rss+xml
                     application/atom_xml
                     application/javascript
                     application/x-javascript
                     application/x-httpd-php;
   gzip_disable      "MSIE [1-6]\.";
   gzip_disable      "Mozilla/4";
   gzip_comp_level   1;
   gzip_buffers      4 8k;
   gzip_min_length   1100;
このさき略
}

参照

http://www.mk-mode.com/octopress/2013/01/18/nginx-gzip-compress/