vagrantでhttpプロキシを超える
たまにプロキシに引っかかりますよね。たまに。
プロキシがあると、vagrantでvagrant upしたらapt-getとかwgetとかに失敗します。 docker使うときにもこれ有効です。
解決法:
https://github.com/tmatilai/vagrant-proxyconf を使う
セットアップ
インストール:
$ vagrant plugin install vagrant-proxyconf
Vagrantfile:
Vagrantfileに:
Vagrant.configure("2") do |config| config.proxy.http = "<http_proxy>" config.proxy.https = "<http_proxy>" config.proxy.ftp = "<http_proxy>" config.proxy.no_proxy = "localhost,127.0.0.1,.example.com" end
<http_proxy>の部分は http://[user:pass@]host:port
の形式にする。
これでOK。
入門Chef Solo - Infrastructure as Code
- 作者: 伊藤直也
- 出版社/メーカー: 伊藤直也
- 発売日: 2013/03/11
- メディア: Kindle版
- 購入: 16人 クリック: 1,027回
- この商品を含むブログ (15件) を見る
- 作者: 新原雅司
- 出版社/メーカー: 技術評論社
- 発売日: 2013/09/12
- メディア: Kindle版
- この商品を含むブログ (3件) を見る
- 作者: Mitchell Hashimoto
- 出版社/メーカー: Oreilly & Associates Inc
- 発売日: 2013/06/12
- メディア: ペーパーバック
- クリック: 5回
- この商品を含むブログ (2件) を見る