有没有办法让nginx的当前时间?(Is there a way to get the curren

2019-07-29 15:06发布

我想一个nginx的服务器时注入HTTP头。

我能够添加到HTTP头,就像这样:

proxy_set_header HELLO-WORLD 'something';

但现在,我希望能够以时间注入HTTP头,一些看起来是这样的:

proxy_set_header THE-TIME $time_var;

或类似的东西。

请问这可能吗?

Answer 1:

您可以使用变量从SSImodulе:$ date_gmt和$ DATE_LOCAL

proxy_set_header THE-TIME $date_gmt;

http://nginx.org/en/docs/http/ngx_http_ssi_module.html#variables



文章来源: Is there a way to get the current time in nginx?
标签: nginx