Created
April 18, 2024 09:20
-
-
Save thierrypigot/d7b06c0ee147ff229c86cdfeca10c0e2 to your computer and use it in GitHub Desktop.
Exemples de configuration VCL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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