gpt4 book ai didi

varnish - 如何设置具有两个后端的 Varnish ?

转载 作者:行者123 更新时间:2023-11-30 23:48:32 26 4
gpt4 key购买 nike

我已经安装了 Apache 和 Tomcat,想在它们前面安装 Varnish,静态到 Apache,动态到 Tomcat(所有/static/* url 到 Apache,应该由 Varnish 缓存,其他 url 到 Tomcat )。

如何配置 Varnish ?

backend static {
.host = "127.0.0.1";
.port = "8080";
}
backend dynamic {
.host = "127.0.0.1";
.port = "8081";
}
sub vcl_recv {
if (req.url ~ "^/static/") { # How to determine which backend to go to, and cache it?
return (lookup); # return (static.lookup)?
} else {
return (lookup);
}
return (lookup);
}

最佳答案

根据 Varnish documentation , 使用

set req.backend = static;

等等。

关于varnish - 如何设置具有两个后端的 Varnish ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13794432/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com