Apache と Tomcat をインストールしましたが、それらの前に Varnish をインストールしたいのですが、静的は Apache に、動的は Tomcat に行きます (すべての /static/* URL は Apache に行き、Varnish によってキャッシュされる必要があります。他の URL は tomcat に行きます)。
ワニスの設定方法は?
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);
}