• Multiple server support, purging works great. Only complaint was if you’re using a custom VCL file you’ll need to add this to it

    ‘if (req.request == “BAN”) {
    if(!client.ip ~ purge) {
    error 405 “Not allowed.”;
    }
    ban(“req.url ~ “+req.url+” && req.http.host == “+req.http.host);
    error 200 “Banned.”;
    }’

    it was somewhat unclear in the documentation about that.

  • The topic ‘Works as expected’ is closed to new replies.