diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-17 19:19:38 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-17 19:19:38 +0200 |
| commit | 03b3be0c3bbc70584e8988e1810dc28eacf4521f (patch) | |
| tree | 8eb1071aec0815b1cc8d34a4482907455ae5e8bd /README.md | |
| parent | 11d73f57a80bb65b7507ec80433b8f035ed226c2 (diff) | |
Add HTTP(S) Proxy support
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,7 @@ - Depth control - Request caching - Rate limiting +- HTTP(s) Proxy support - Development mode - Single binary executable @@ -146,6 +147,7 @@ export const config = { allowedURLs: [], // Specify the allowed URLs as regex. (default = all allowed) blockedURLs: [], // Specify the blocked URLs as regex. (default = none) rate: 100, // Specify the rate in requests per second. (default = no rate limit) + proxies: [], // Specify the HTTP(s) proxy URLs. (default = no proxy) cache: "file", // Enable file-based request caching. (default = no cache) }; |