使用http响应发送Varnishinformation

时间:2016-09-28 08:41:31

标签: server typo3 httpresponse varnish

我想通过例如图片的http响应发送关于清漆服务器的信息。有没有办法做到这一点? 感谢。

1 个答案:

答案 0 :(得分:0)

vcl_delivervcl_synth中可读的任何信息/标头/变量(本例中为清漆4)都可以作为响应标头发送。

sub vcl_deliver {
    set resp.http.X-Varnish-Server = server.ip;
}