memoメモ

最近はGo言語関連で。φ(..)メモメモ

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

入門Chef Solo - Infrastructure as Code

Vagrant入門ガイド

Vagrant入門ガイド

Vagrant: Up and Running

Vagrant: Up and Running