Summary of proxy settings to check how to use each time If you come up with something else, add it immediately
It will be Redhat, CentOS main.
yum vi /etc/yum.conf
proxy=http://proxyserver:port
wget vi /etc/wgetrc
http_proxy=http://proxyserver:port/
https_proxy=http://proxyserver:port/
ftp_proxy=http://proxyserver:port/
curl
curl -x proxyserver:port -L https://www.google.com
git
git config --global http.proxy http://proxyserver:port
git config --global https.proxy http://proxyserver:port
pip
pip install module--proxy=http://proxyserver:port
Recommended Posts