summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index fcbbafa..80b21af 100644
--- a/README.md
+++ b/README.md
@@ -175,8 +175,11 @@ export const config = {
// Specify the blocked URLs as regex. (default = none)
blockedURLs: ["/admin"],
- // Specify the rate in requests per second. (default = no rate limit)
- rate: 100,
+ // Specify the rate in requests per minute. (default = no rate limit)
+ rate: 60,
+
+ // Specify the number of concurrent requests. (default = no limit)
+ concurrency: 1,
// Specify a single HTTP(S) proxy URL. (default = no proxy)
proxy: "http://someproxy.com:8043",