我正在使用 varnish-4.0.3 并且vcc_allow_inline_c
默认off
情况下。我所做的是:
varnishadm
200
-----------------------------
Varnish Cache CLI 1.0
-----------------------------
Linux,3.10.0-123.el7.x86_64,x86_64,-sfile,-sfile,-sfile,-smalloc,-hcritbit
varnish-4.0.3 revision b8c4a34
Type 'help' for command list.
Type 'quit' to close CLI session.
param.show vcc_allow_inline_c
200
vcc_allow_inline_c on [bool]
并且,在 default.vcl 中,
C{
#include <stdio.h>
}C
但是,它不起作用,systemd 没有正常启动。
varnishd[28929]: Message from VCC-compiler:
varnishd[28929]: Inline-C not allowed
varnishd[28929]: ('input' Line 6 Pos 1)
varnishd[28929]: C{
varnishd[28929]: ##
varnishd[28929]: Running VCC-compiler failed, exited with 2
varnishd[28929]: VCL compilation failed
我也尝试过使用DAEMON_OPTS="-p vcc_allow_inline_c=on"
,但这也不起作用。
我在这里缺少什么?