From 297835a9b2c1673ec62932271160bc036d95832c Mon Sep 17 00:00:00 2001 From: Philipp Tanlak Date: Mon, 24 Nov 2025 20:58:57 +0100 Subject: public -> docs --- public/docs/configuration/proxies/index.html | 591 --------------------------- 1 file changed, 591 deletions(-) delete mode 100644 public/docs/configuration/proxies/index.html (limited to 'public/docs/configuration/proxies') diff --git a/public/docs/configuration/proxies/index.html b/public/docs/configuration/proxies/index.html deleted file mode 100644 index 3a43ad5..0000000 --- a/public/docs/configuration/proxies/index.html +++ /dev/null @@ -1,591 +0,0 @@ - - - - - - - - - - - - - - - Proxies – Flyscrape - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
-
-
- -
Proxies
-
- -
-

Proxies

-

The proxy feature allows you to route your scraping requests through a specified HTTP(S) proxy. This can be useful for bypassing IP-based rate limits or accessing region-restricted content.

-
export const config = {
-    // Specify a single HTTP(S) proxy URL.
-    proxy: "http://someproxy.com:8043",
-};
- -
-
-

In the above example, all scraping requests will be routed through the proxy at http://someproxy.com:8043.

-

Multiple Proxies -

You can also specify multiple proxy URLs. The scraper will rotate between these proxies for each request.

-
export const config = {
-    // Specify multiple HTTP(S) proxy URLs.
-    proxies: [
-      "http://someproxy.com:8043",
-      "http://someotherproxy.com:8043",
-    ],                     
-};
- -
-
-

In this example, the scraper will randomly pick between the proxies at http://someproxy.com:8043 and http://someotherproxy.com:8043.

-

Note: If both proxy and proxies are specified, all proxies will be respected.

- -
-
- - -
-
-
- - - - - - - - - - -- cgit v1.2.3