「Linux/nginx/パフォーマンス向上」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「vi /etc/nginx/conf.d/sample1.localhost.conf http { gzip on; gzip_http_version 1.0; gzip_types text/plain text/xml...」) |
|||
| 行23: | 行23: | ||
==参照== | ==参照== | ||
http://www.mk-mode.com/octopress/2013/01/18/nginx-gzip-compress/ | http://www.mk-mode.com/octopress/2013/01/18/nginx-gzip-compress/ | ||
| + | |||
| + | http://blog.hoerin.com/2014/11/11/nginx%E3%81%A7gzip%E5%9C%A7%E7%B8%AE%E3%82%92%E6%9C%89%E5%8A%B9%E3%81%AB%E3%81%99%E3%82%8B/ | ||
2015年5月21日 (木) 05:17時点における版
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/
