`
jbeduhai
  • 浏览: 504328 次
  • 性别: Icon_minigender_1
  • 来自: 山东
社区版块
存档分类
最新评论

nginx 访问类型 mime.types

阅读更多

引用
1.cd /etc/nginx

如下图:

2.vim mime.types 

引用
3.在types 的第一行的 text/html 后面的值加上访问的类型如:action .do等

如下图:
  • 大小: 15.4 KB
  • 大小: 26.6 KB
分享到:
评论

相关推荐

    Nginx 配置文件 nginx.conf 详解

    MIME 类型是 Nginx 服务器识别文件类型的重要组件,我们可以通过 `include` 指令来设置 MIME 类型,例如 `include mime.types;`,这将设置 MIME 类型为 mime.types。 日志格式 日志格式是 Nginx 服务器记录客户端...

    Nginx配置文件(nginx.conf)配置详解[定义].pdf

    在这个示例中,MIME类型配置文件为mime.types文件,默认类型为application/octet-stream。 日志格式 `log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "${...

    nginx-1.24.0-1.el7.ngx.aarch64-ipv6.rpm

    2023年5月26日,当前最新稳定版nginx 1.24.0 二进制rpm包 适用于arm64架构平台,centos7 redhat 7 arm架构的操作系统 已开启ipv6支持,官方默认不支持 可用于修复安全漏洞、升级更新nginx版本到1.24.0

    Nginx安装与使用.docx

    include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" '; access_log logs/access.log main; sendfile on; keepalive_time...

    nginx-1.13.2.tar.gz

    2. `conf/`:默认配置文件,如`nginx.conf`是主配置文件,`mime.types`定义了不同文件类型的MIME类型。 3. `objs/`:编译后的目标文件和可执行文件存放的地方。 4. `auto/`:包含了自动配置脚本,用于检测系统特性...

    MIME-Types-1.32.tar.gz

    总的来说,"MIME-Types-1.32.tar.gz"是一个对Linux环境下的Apache和Nginx服务器管理员非常有用的工具,它提供了丰富的MIME类型定义,帮助服务器正确处理各种类型的网络资源,从而提升用户体验。在安装和使用过程中,...

    nginx配置文件详解.docx

    * `include /etc/nginx/mime.types;`:包括 mime 类型定义文件。 * `default_type application/octet-stream;`:设置默认的 MIME 类型。 * `access_log /var/log/nginx/access.log;`:设置访问日志文件的路径。 * `...

    Nginx配置文件说明.

    - `include`指令用于包含其他配置文件,如包含MIME类型文件(`mime.types`)。 - `log_format`定义日志记录格式,如`main`和`download`。 - `gzip`模块用于开启GZIP压缩,提高传输效率。 - `access_log`定义访问...

    Nginx 安装配置教程.pdf

    include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$...

    Nginx安装配置教程.docx

    include mime.types; # 包含MIME类型文件 default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ';...

    nginx和tomcat整合.pdf

    include mime.types; default_type application/octet-stream; include proxy.conf; log_format main '$remote_addr-$remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '...

    windows下搭建基于nginx的rtmp服务器.docx

    include mime.types; default_type application/octet-stream; # 日志格式 # log_format main '$remote_addr: $remote_port - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$...

    搭建Nginx正向代理服务.docx

    include mime.types; default_type application/octet-stream; server { listen 88; resolver 183.60.82.98; # DNS解析地址 server_name _; location / { proxy_pass https://$host$request_uri; # 设定...

    「linux命令大全Nginx安装配置」.docx

    include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$...

    nginx配置 -修改.docx

    include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; # HTTP代理设置 upstream polling-server { server 10.193.79.193:80; } server { listen 80; ...

    Nginx 34 道面试题及答案.docx

    9. mime.types.default:mime.types 的原始备份文件 10. nginx.conf:Nginx 主配置文件 11. nginx.conf.default:nginx.conf 的原始备份文件 12. scgi_params:scgi 相关参数文件 13. scgi_params.default:scgi_...

    docker下nginx配置压缩字体和图片等配置

    总结起来,要在Docker下的Nginx环境中配置字体和图片的GZIP压缩,你需要更新`docker-compose.yml`以设置环境变量,修改`nginx.conf`以启用GZIP和指定压缩的文件类型,以及确保`mime.types`文件包含了所有要处理的...

    Nginx使用及配置.docx

    include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name example.com; location / { root html; index index....

Global site tag (gtag.js) - Google Analytics