タイトルで言い切ってますが…
CloudFront の「Compress Objects Automatically」ってオプションを有効にすると、対応しているブラウザに対しては圧縮転送をしてくれるはずなんですが、オリジンサーバが WordPress の場合、これが有効になりません。
css とか js なんかの静的ファイルはちゃんと圧縮してくれてるんですが…
調べたところ、CloudFront で compress オプションが有効になるには、以下の条件があるようです。
- The file must be of a type that CloudFront compresses.
- The file size must be between 1,000 and 10,000,000 bytes.
- The response must include a Content-Length header so CloudFront can determine whether the size of the file is in the range that CloudFront compresses. If the Content-Length header is missing, CloudFront won't compress the file.
- The response must not include a Content-Encoding header.
これの「The response must include a Content-Length header so CloudFront can determine…」が引っかかってるんですね…
続きを読む