美文网首页
nginx 配置文件的计量单位

nginx 配置文件的计量单位

作者: C86guli | 来源:发表于2016-07-09 14:19 被阅读400次

译自:
http://nginx.org/en/docs/syntax.html

计量大小的单位:

bytes, kilobytes(后缀为 k 或 K), megabytes(后缀为 m 或 M),
例如:“1024”, “8k”, “1m”.

时间单位:

ms  milliseconds 毫秒
s   seconds 
m   minutes
h   hours
d   days
w   weeks
M   months, 30 days
y   years, 365 days

Multiple units can be combined in a single value by specifying them in the order from the most to the least significant, and optionally separated by whitespace. For example, “1h 30m” specifies the same time as “90m” or “5400s”. A value without a suffix means seconds. It is recommended to always specify a suffix.

对于时间单位来说,可同时使用多个单位,比如 “1h 30”,它等同于 “90m” 或者 “5400s”。如果不指定单位,默认是 “秒”,建议指定时间单位。

Some of the time intervals can be specified only with a seconds resolution.

某些时间参数只能使用 “秒” 为单位。


版权信息
本文编译自 nginx.org 的部分,遵循其原来的 licence 声明: 2-clause BSD-like license

相关文章

  • nginx 配置文件的计量单位

    译自:http://nginx.org/en/docs/syntax.html 计量大小的单位: 时间单位: Mu...

  • 第二讲 Nginx模块详解

    本章要点 Nginx 配置文件结构 各个模块的详解 2.1 Nginx配置文件结构 Nginx的配置文件nginx...

  • Nginx配置文件详解

    Nginx配置文件nginx.conf详解 nginx.conf nginx技术一--配置文件nginx.conf...

  • Nginx配置文件nginx.conf详解和nginx的变量规则

    Nginx配置文件nginx.conf详解 Nginx 总的 配置文件 位置 /usr/local/nginx/c...

  • 应用程序常用命令

    nginx: nginx启动:nginx -c nginx配置文件地址检查配置文件是否正确:nginx -t重启n...

  • nginx(五)nginx cmd

    nginx cmd 1、启动nginx start nginx 2、修改配置文件并生效 测试nginx配置文件是否...

  • Nginx使用

    Nginx [toc] nginx命令 参数 Nginx启动 通过指定配置文件启动 配置文件语法检查 Nginx配...

  • nginx配置文件

    nginx配置文件nginx配置文件详解一、nginx配置文件 启动子进程程序默认用户 user nobody;...

  • Nginx 打印body体内容

    Nginx 打印body体内容,修改nginx配置文件nginx.conf 重新加载配置文件 nginx body...

  • nginx(二)

    在修改配置文件后,检查 nginx 配置文件语法是否正确:nginx -t 重新启动 nginx: nginx -...

网友评论

      本文标题:nginx 配置文件的计量单位

      本文链接:https://www.haomeiwen.com/subject/cegrjttx.html