Viele UNIX-Programme respektieren den http_proxy
Umgebungsvariable, curl enthalten. Das von curl akzeptierte Format ist [protocol://]<host>[:port]
.
In Ihrer Shell-Konfiguration:
export http_proxy http://proxy.server.com:3128
Zum Proxying von HTTPS Anfragen, setzen Sie https_proxy
auch.
Mit Curl können Sie dies auch in Ihrem .curlrc
festlegen Datei (_curlrc
unter Windows), die Sie vielleicht für dauerhafter halten:
http_proxy=http://proxy.server.com:3128
Sie können einen Alias in Ihrer ~/.bashrc-Datei erstellen:
alias curl="curl -x <proxy_host>:<proxy_port>"
Eine andere Lösung ist die Verwendung (vielleicht die bessere Lösung) des ~/.curlrc
Datei (erstellen, falls nicht vorhanden):
proxy = <proxy_host>:<proxy_port>