发布于 2015-09-03 15:49:18 | 212 次阅读 | 评论: 0 | 来源: 网络整理
在请求的响应末尾输出一段内容。输出内容可配置,并支持内嵌变量。
location / { root html; footer_types "text/plain" "text/css" "application/x-javascript"; footer "$host_comment"; }
在每个HTTP响应的正文结尾插入指定的format内容。如果format中含有变量,会被替换为变量当前的值。
举例:
location / { footer "<!-- $hostname, $year/$month/$day $hour:$minute:$second, $request -->"; index index.html; }
定义需要插入footer的响应类型(Response Content-Type)。