解决css文件返回格式Content-Type为text/html问题
作者:互联网
一 报错问题
nginx配置多层代理时,修改完nginx.conf后发现css,js都无法正常加载。返回格式 Content-Type 一直是 text/html。报错如下:
二 排查问题
1 查看Nginx配置,发现mime.types文件中已定义文件格式js,说明默认配置中的types
规则未生效。
include mime.types:表示纳入mime.types文件的配置,一般根据mime.types
文件中配置来指定响应头中的content-type
字段。
2 location块增加以下配置,实现对所有的请求返回指定的数据类型。
location /abc/ { types { } #types
配置为空(相当于取消了默认的types
配置) default_type application/javascript; # 指定css文件返回指定content-type }
配置中加入上述字段后,重新加载nginx配置,报错问题解决!
标签:text,配置,Content,html,mime,css,报错,type,types 来源: https://www.cnblogs.com/daminghuahua/p/16489002.html