- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:
我无法清除我的页面。经过很多时间,我决定找出清除的工作原理并找到它!
As you can see we have used a new action - return(purge). This ends execution of vcl_recv and jumps to vcl_hash. This is just like we handle a regular request. When vcl_hash calls return(lookup) varnish will purge the object and then call vcl_purge. Here you have the option of adding any particular actions you want Varnish to take once it has purge the object. docs
最佳答案
Purge 方法仅适用于正在请求的特定 url。不能在 Purge 中使用正则表达式。
例如:发出对 www.example.com/uri 的请求并调用 Purge,只有整个 URL 的对象才会从缓存中删除。然后,如果您想使用 Purge,则必须在 VCL 上实现以下功能:
acl purge {
"localhost";
"192.168.55.0"/24;
}
sub vcl_recv {
...
# allow PURGE from localhost and 192.168.55...
if (req.method == "PURGE") {
if (!client.ip ~ purge) {
return(synth(405,"Not allowed."));
}
return (purge);
}
...
}
$ curl -X PURGE "www.example.com/desired/uri"
sub vcl_recv {
...
if (req.method == "BAN") {
# Same ACL check as above:
if (!client.ip ~ purge) {
return(synth(403, "Not allowed."));
}
ban("req.http.host == " + req.http.host +
" && req.url ~ " + req.url);
# Throw a synthetic page so the
# request won't go to the backend.
return(synth(200, "Ban added"));
}
...
}
$ curl -X BAN "www.example.com/.png$"
关于 Varnish :如果我在hash_data中有cookie,则清除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41065044/
谁能解释一下下面的vcl代码: sub vcl_hash { hash_data(req.url); if (req.http.host) { hash_data(req.
在 vcl_hash 中,我有 backend default { .host = "127.0.0.1"; .port = "8080"; } acl purge {
我知道在 Varnish 中,您可以使用 vcl_hash 中的 hash_data() 将数据添加到缓存散列中,如 docs 所述。 . 出于调试目的,我希望能够查看组成散列的所有内容的全部内容。
我是一名优秀的程序员,十分优秀!