Enable proxies on Linux

1. Open Safari on your Mac

Export the http_proxy and https_proxy environment variables by typing the following commands:

# export http_proxy=http://your_veilproxy_username:[email protected]:3130
# export https_proxy=http_proxy://your_veilproxy_username:[email protected]:3130

2. Configure Docker​

1. Configure docker to user proxy on Linux:

# sudo mkdir -p /etc/systemd/system/docker.service.docker

2. Create a configuration file named like: /etc/systemd/system/docker.service.d/http-proxy.conf with content like following:

[Service]
Environment="HTTP_PROXY=http://your_veilproxy_username:[email protected]:3130"
Environment="HTTPS_PROXY=http://your_veilproxy_username:[email protected]:3130"

3. Finish configuration by reloading and restarting docker daemon:

# sudo systemctl daemon-reload
# sudo systemctl restart docker
# sudo touch

3. Configure Proxychains​

Edit /etc/proxychains.conf file to look the following way:

[ProxyList]
http node1.veilpro.tech 3130 your_veilproxy_username your_veilproxy_password

You can test by running the following command: proxychains curl http://ip-api.com