最近我们计划将tengine更改为nginx,我们在tengine中使用$ unxi_time变量,而我在nginx文档中找不到类似的变量,对此有何建议?感谢
答案 0 :(得分:2)
已经解决了。
使用lua模块返回本地时间戳
location = / management / timestamp { default_type application / json; content_by_lua' 时间= os.time(); ngx.say( “{\” 时间戳\ “” .. “:” .. ..时间 “}”); “; }