Viewing 1 replies (of 1 total)
  • Plugin Author Javier Casares

    (@javiercasares)

    BAN or PURGE is for Admin commands. The “method” you use via HTTP is configurable in your VCL. By default is always PURGE…

    if (req.request == "PURGE") {
        if (!client.ip ~ purge) {
          error 405 "Method Not Allowed";
        }
        return(pipe);
      }

    You can use the request method you prefer…

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WordPress Varnish as a Service] purging not ban’ is closed to new replies.