-
A common question I usually receive is: How do I use/configure proxy services (for example like smartproxy.com) with the CROWler? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The answer to this question is, you need to configure the proxy service you use (doesn't matter if it's Data center IPs, Residential IPs etc.) in the VDI section of your vdi:
- name: vdi_japan_01
location: Japan
type: chrome
host: ${VDI_JAPAN_HOST_01}
path: ""
port: 4444
proxy_url: "http://your_proxy_server:port" Where:
Please note(1): Because the CROWler also uses Selenium and Selenium does NOT support user and password for the proxy configuration, at the moment I reccomend to use whitelisted your server IP on your proxy service. Given the proxy is used in multiple places in the CROWler architecture, this limitation is only on the selenium side, NOT on other areas of the CROWler, however to keep your configuration consistent, you probably want to just use a white listed IP. Please note (2): If you are using a version of the CROWler before release HTH |
Beta Was this translation helpful? Give feedback.
The answer to this question is, you need to configure the proxy service you use (doesn't matter if it's Data center IPs, Residential IPs etc.) in the VDI section of your
config.yaml
:Where:
your_proxy_server
is either the IP or the FQDN to your proxy (for example with smartproxy.com it should be something likedc.smartproxy.com
for the Data Center proxies/IPs)port
is the port number, for example 8080Please note(1): Because the CROWler also uses Selenium and Selenium does…