MI have two domains pointing to the same nginx server. this is my setup and how I want to run my domains.
My problem is that When a user for example requests site1.com/page/
its cache is diffrent than site2.com/page
.
I want both site1.com/page/
& site2.com/page/
to return the same cache so the server does not store cache twice.
my vcl setup is set to 127.0.0.1
backend default {
.host = "127.0.0.1";
.port = "8081";
}
Nginx
server {
listen 8081;
server_name site1.com site2.com;
What rule or config can I add to make make varnish treat site1.com
& site2.com
the same?
Basically I want varnish to ignore the hostname(domain) & cache base on the URL and other hash data.
my varnish version is 4.0
The
vcl_hash
subroutine in VCL is responsible for creating the hash that is used to lookup objects in the cache. The Varnish built-in VCL forvcl_hash
goes as follows:As you can see, it takes both the URL (through
req.url
) and theHost
header (throughreq.http.host
andserver.ip
if there is no host) to create the lookup hash.The
Host
header is important here because it identifies the site that needs to be cached. If you're accelerating multiple websites on a single Varnish server, theHost
header ensuressite1.com/page
andsite2.com/page
don't share the same cache.You seem to want the exact opposite. This means that instead of relying on the built-in VCL, you have to specify a custom
vcl_hash
definition that will look like this:This will share the cache between all websites and will only use the URL to identify objects in the cache.
If you want to have more security in place, you can also share the cache between sites explicitly, rather than sharing the cache for every single site.
Here's some example VCL code that only allows the cache to be shared between
site1.com
andsite2.com
:If the condition is not matched, no return statement is executed, which means the built-in VCL is still used.