Hacker News new | past | comments | ask | show | jobs | submit login

Yes, the default config does have that (safe) behaviour. It's rather easy to change, by replacing the vcl_recv function in the config. Something like:

  sub vcl_recv {
    if (req.http.cookie ~ "wordpress_logged_in_|comment_author_|wp-postpass_") {
      return (pass);
    }
    return (lookup);
  }



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: