Skip to content

Instantly share code, notes, and snippets.

@dennisblume
Last active February 12, 2016 18:55
Show Gist options
  • Save dennisblume/06e54a3351ad0f875d0f to your computer and use it in GitHub Desktop.
Save dennisblume/06e54a3351ad0f875d0f to your computer and use it in GitHub Desktop.
No caching for logged-in WordPress user and commenters
sub vcl_recv {
.
.
.
if ( req.http.cookie ~ "comment_author_" || req.http.Cookie ~ "wordpress_logged_in_" ) {
return( pass );
}
.
.
.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment