libvmod-throttle
libvmod-throttle copied to clipboard
Varnish: Reject or delay requests after given tresholds are reached. (Think API rate limit, or per-ip MISS rate limit)
Hi, I have varnish 3.0.7-1 already installed on my server. In order to compile and install libvmod-throttle, I have to download varsnish source, but I have trouble when trying to...
Hello, I want to block xmlrpc and wp-login requests only for IP that floods and exceed the requests in secon, but when other people from other IPs opens the wp-login.php...
When I first tried compiling vmod_throttle, I got a number of errors like this: ``` vmod_throttle.c: In function '_vmod_remove_older_entries': vmod_throttle.c:261: error: 'for' loop initial declaration used outside C99 mode ```...
Hi, this pull request implements some changes to implement explicit rules. Before, rules were always created implicitly by the `is_allowed` call. This is suitable for the rate limiting use case...
Hi folks, We're currently considering to start to use either Varnish version 3 or 4, combined with this plugin. As such, I was wondering if you happened to have looked...
we've hit a rather odd segfault while deploying throttle. our config is pretty straightforward ``` import throttle; sub vcl_miss { // this one'll be enforced before rps_hit if(req.url !~ "\.(jpg|jpeg|png|gif|ico|swf|css|js|html|htm)$")...