LoginSignup
3
1

More than 5 years have passed since last update.

proxy下でのdevstack設定

Posted at

aptやyumのProxy設定と、/etc/wgetrcでwgetのProxy設定もしておく。
gitプロトコルが通らない場所ではlocal.confに以下を追記しておくと、HTTPSで通信が行われる。

local.conf
GIT_BASE=https://git.openstack.org

環境変数のProxy設定も必要だが、no_proxyに自身のIPアドレスを追加しておくことを忘れない。

export http_proxy=<your-http-proxy>
export https_proxy=<your-https-proxy>
export no_proxy=127.0.0.1,12.34.56.78
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1