1. 首页
  2. 网络技术
  3. 其他
  4. 如何配置nginx mine.types文件

如何配置nginx mine.types文件

上传者: 2023-03-05 16:06:04上传 TYPES文件 3.95KB 热度 15次

Nginx是一款高性能的Web服务器和反向代理服务器,可以通过配置文件对其进行个性化定制。其中mine.types文件是用于配置文件类型映射的文件。在进行Nginx配置时,正确配置mine.types文件可以确保Nginx服务器正确地将不同类型的文件传输给客户端。以下是配置nginx mine.types文件的步骤:

1. 打开nginx.conf文件并找到http段。

2. 在http段中添加以下代码:

```

include mine.types;

default_type application/octet-stream;

```

3. 在nginx.conf文件所在的目录下创建一个mine.types文件。

4. 将以下代码添加到mine.types文件中:

```

types {

text/html html htm shtml;

text/css css;

text/xml xml;

image/gif gif;

image/jpeg jpeg jpg;

application/x-javascript js;

application/atom+xml atom;

application/rss+xml rss;

text/mathml mml;

text/plain txt;

text/vnd.sun.j2me.app-descriptor jad;

text/vnd.wap.wml wml;

text/x-component htc;

image/png png;

image/tiff tif tiff;

image/vnd.wap.wbmp wbmp;

image/x-icon ico;

image/x-jng jng;

image/x-ms-bmp bmp;

image/svg+xml svg svgz;

application/java-archive jar war ear;

application/mac-binhex40 hqx;

application/pdf pdf;

application/x-cocoa cco;

application/x-java-archive-diff jardiff;

application/x-java-jnlp-file jnlp;

application/x-makeself run;

application/x-perl pl pm;

application/x-pilot prc pdb;

application/x-rar-compressed rar;

application/x-redhat-package-manager rpm;

application/x-sea sea;

application/x-shockwave-flash swf;

application/x-stuffit sit;

application/x-tcl tcl tk;

application/x-x509-ca-cert der pem crt;

application/x-xpinstall xpi;

application/zip zip;

}

```

以上代码中包含了常见文件类型及其对应的扩展名。如果您需要添加其他文件类型,可以按照相同的格式添加。

用户评论