Proxy関連の設定
/etc/environment.
http_proxy=http://proxy:port/
https_proxy=http://proxy:port/
pipができない場合
.pipフォルダとpip.confファイルを作成
~/.pip/pip.conf
[global]
trusted-host = pypi.python.org
pypi.org
files.pythonhosted.org
Docker関連
/etc/default/docker.
export http_proxy="http://proxy:port/"
export https_proxy="http://proxy:port/"
sudo service docker restart
docker info で確認
Zscaler関連の設定
Zscalerをコピー
sudo cp ZscalerRootCertificate.crt /usr/share/ca-certificates
/etc/ca-certificates.conf
ZscalerRootCertificate.crt
以下のコマンドを実行
sudo update-ca-certificates
CURLが使えなければ、下記を追加するのも一興
export CURL_CA_BUNDLE=/usr/share/ca-certificates/ZscalerRootCertificate.crt
export REQUESTS_CA_BUNDLE=/usr/share/ca-certificates/ZscalerRootCertificate.crt
export SSL_CERT_FILE=/usr/share/ca-certificates/ZscalerRootCertificate.crt