LoginSignup
8
8

More than 5 years have passed since last update.

Nginxでgzip圧縮をかける設定例

Posted at
gzip
gzip on;
gzip_proxied     any;
gzip_min_length  1000;

# text/html は設定如何に関わらず入る
gzip_types       text/css text/javascript application/javascript application/x-javascript;

# ie5.5 ie6 SV1,2の場合は無視
gzip_disable     "msie6";

# varyヘッダを有効にする
gzip_vary        on;
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8