获取自Nginx的纪元(秒)以来的当前时间的字符串

时间:2018-09-22 12:42:21

标签: nginx

在nginx配置文件中,获取包含自纪元以来以秒为单位的当前时间的字符串表示形式的变量的最佳方法是什么?从概念上讲,我想要这样的东西:

$timestamp = <unix_time>;
add_header Time $timestamp;

根据主持人的要求,这不是重复的

Is there a way to get the current time in nginx?

作为变量$date_gmt and $date_local不提供秒后格式。

2 个答案:

答案 0 :(得分:0)

根据the docs,它在$msec变量中。

答案 1 :(得分:0)

实际上,该功能已添加到此模块中:

https://github.com/openresty/set-misc-nginx-module

搜寻行将是:

set_formatted_gmt_time $unix_time_str "%s";