nginx:使用正确的标头提供file.css.xgz

时间:2014-01-06 07:21:19

标签: nginx http-headers mime-types content-type

我在磁盘上压缩了样式表gzip,并希望通过nginx提供服务。它名为file.css.xgz,它应该有

Content-Type: text/css
Content-Compression: gzip

所以我将其添加到mime.types

text/css                              css css.xgz;

这是我的server配置:

location ~* \.xgz$ {
  add_header Content-Encoding gzip;
}

服务器已重新启动,但内容类型仍为application/octet-stream(Content-Encoding已按预期设置)。

1 个答案:

答案 0 :(得分:0)

尝试使用mime类型中的“xgz”代替“css.xgz”