我正在尝试设置我的清漆服务器
当我尝试使用此命令运行Varnish进行调试时
varnishd -d -f /etc/varnish/default.vcl
得到错误:
Symbol not found: 'ipcast.clientip' (expected type BOOL):
('input' Line 101 Pos 9)
if (ipcast.clientip(req.http.X-Forwarded-For) != 0) {
--------###############-----------------------------------
现在我不确定如何阅读此错误消息,可能是我的后端服务器未正确定义?或者应该在其他地方寻找?
答案 0 :(得分:0)
此错误消息表示未正确加载ipcast VMOD。
将import ipcast;
添加到VCL。