##はじめに
毎回毎回ぐぐって使い方を調べるプロキシ設定まとめ
ほかに思いついたら即追加
##環境
Redhat,CentOSメインになります。
##設定
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 モジュール --proxy=http://proxyserver:port