-
-
Save arosenhagen/8aaf5d7f94171778c0e9 to your computer and use it in GitHub Desktop.
Revisions
-
arosenhagen revised this gist
Dec 21, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ map $http_user_agent $limit_bots { default ''; ~*(bing|yandex|msnbot) $binary_remote_addr; } limit_req_zone $limit_bots zone=bots:10m rate=1r/m; -
arosenhagen revised this gist
Dec 21, 2014 . No changes.There are no files selected for viewing
-
supairish created this gist
Jun 18, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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; } } }