InterviewSolution
Saved Bookmarks
| 1. |
Explain How You Can Get The Current Time In Nginx? |
|
Answer» To GET the CURRENT TIME in Nginx, you have to use VARIABLES from SSI module, $date_gmt and $date_local. Proxy_set_header THETIME $date_gmt; To get the current time in Nginx, you have to use variables from SSI module, $date_gmt and $date_local. Proxy_set_header THETIME $date_gmt; |
|