Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created April 18, 2024 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thierrypigot/d7b06c0ee147ff229c86cdfeca10c0e2 to your computer and use it in GitHub Desktop.
Save thierrypigot/d7b06c0ee147ff229c86cdfeca10c0e2 to your computer and use it in GitHub Desktop.
Exemples de configuration VCL
sub vcl_recv {
# Ne pas mettre en cache lorsque les cookies de session sont présents
if (req.http.cookie ~ "PHPSESSID") {
return (pass);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment