Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/vcl-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ backend {{ .PodName }} {
// Create ACL with Varnish cluster members
acl acl_cluster {
{{ range .VarnishNodes }}
"{{ .IP }}"/32;
"{{ .IP }}/32";
{{ end }}
}

Expand Down Expand Up @@ -369,7 +369,7 @@ sub vcl_recv {
if (req.http.X-shard == server.identity || remote.ip ~ acl_cluster) {
set req.backend_hint = real.backend();
} else {
return(pass);
return(pass); // Can be hash here you if want to load the answer in the local cache of calling Varnish instance
}

return (hash);
Expand Down