nginx 的配置中的度量单位

nginx 中配置常用到两种类型的度量单位,分别是空间大小单位。比如多少kb,多少mb。另外一种是时间单位。

nginx 中的时间单位

msmilliseconds 毫秒
sseconds 秒
mminutes 分钟
hhours 小时
ddays 天
wweeks 周
Mmonths, 30 days
yyears, 365 days
nginx 中的时间单位

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.

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

nginx 中的空间大小单位

  1. k 或者 K
  2. m 或者 M
  3. 如果不填写表示 bytes

Sizes can be specified in bytes, kilobytes (suffixes k and K) or megabytes (suffixes m and M), for example, “1024”, “8k”, “1m”.

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