mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 09:40:13 +08:00
core: Unix ns and Unix ms time placeholders (#4280)
This commit is contained in:
parent
a10910f398
commit
1b1e625c20
|
@ -301,6 +301,10 @@ func globalDefaultReplacements(key string) (interface{}, bool) {
|
||||||
return nowFunc().Format("02/Jan/2006:15:04:05 -0700"), true
|
return nowFunc().Format("02/Jan/2006:15:04:05 -0700"), true
|
||||||
case "time.now.year":
|
case "time.now.year":
|
||||||
return strconv.Itoa(nowFunc().Year()), true
|
return strconv.Itoa(nowFunc().Year()), true
|
||||||
|
case "time.now.unix":
|
||||||
|
return strconv.FormatInt(nowFunc().Unix(), 10), true
|
||||||
|
case "time.now.unix_ms":
|
||||||
|
return strconv.FormatInt(nowFunc().UnixNano()/int64(time.Millisecond), 10), true
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, false
|
return nil, false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user