所以我的问题:我有一个很大的 symfony 项目 2.3,清漆 5。所以我想通过 symfony 函数 render_esi() 包含一些片段。毕竟问题我想了解为什么不包含任何文件,甚至只是 test.php。问题是它不包含任何内容,但标签 esi:include src"..." 我没有看到。好的,让我们看看所有配置:
Symfony:config.yml
esi:
enabled: true
fragments:
path: /_fragments
some.html.twig:
<h2>Here must be content</h2>
{{ render_esi(url('esi_megamenuBanners')) }}
{{ render_esi(controller("OstrovWebBundle:Frontend/Page:megamenuBanners")) }}
<esi:include src="https://mo.loc/test.php">
<h2>end content</h2>
这是我试图解雇 ESI 的三种不同方式。
清漆配置:
sub vcl_recv {
#Add a Surrogate-Capability header to announce ESI support.
set req.http.Surrogate-Capability = "abc=ESI/1.0";
}
sub vcl_backend_response {
if (beresp.http.Surrogate-Control ~ "ESI/1.0") {
unset beresp.http.Surrogate-Control;
set beresp.do_esi = true;
}
}
我检查了两个标题Surrogate-Control和Surrogate-Capability - 它们存在。
顺便说一句,我使用 nginx:https -> varnish -> nginx:http:8080 -> symfony 项目。
我花了很多时间进行实验,但我没有找到任何决定......请告诉我我的错误在哪里?