Skip to content

Instantly share code, notes, and snippets.

@UnsupportedCallbackException
Forked from supairish/gist:2951524
Created April 27, 2014 06:10

Revisions

  1. @supairish supairish created this gist Jun 18, 2012.
    15 changes: 15 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    http {

    map $http_user_agent $limit_bots {
    default '';
    ~*(google|bing|yandex|msnbot) $binary_remote_addr;
    }

    limit_req_zone $limit_bots zone=bots:10m rate=1r/m;

    server {
    location / {
    limit_req zone=bots burst=5 nodelay;
    }
    }
    }