Limit downloads to 20 per IP.
This commit is contained in:
parent
a50ea4e312
commit
9d8d31feff
|
@ -9,7 +9,7 @@ if ($request_method = PURGE) {
|
|||
return 462;
|
||||
}
|
||||
|
||||
limit_conn downloads_by_ip 100; # ddos protection: max 100 downloads at a time
|
||||
limit_conn downloads_by_ip 20; # ddos protection: max 100 downloads at a time
|
||||
|
||||
# ensure that skylink that we pass around is base64 encoded (transform base32 encoded ones)
|
||||
# this is important because we want only one format in cache keys and logs
|
||||
|
|
Reference in New Issue