定义MIME-TYPE

我们知道浏览器中可以显示的内容有HTML,xml,GIF等种类繁多的资源文件,为了区别这些文件也就需要MIME-TYPE,所以说mime-type是资源媒体类型,nginx作为web服务器 就能能够识别请求的资源类型

在nginx的配置文件中,默认有两行配置

  1. include /etc/nginx/mime.types;
  2. default_type application/octet-stream;

include 是将这个文件引入到nginx的配置文件中

(1)default_type :同来配置nginx相应前段默认的mime类型

语法 default_type mime-type;
默认值 default_type text/plain ;
位置 http, server , localtion

实例:
image.png