1234567891011 |
- Vagrant.configure("2") do |config|
- config.vm.box = "bento/ubuntu-14.04"
- config.vm.box_version = "201808.24.0"
- config.vm.synced_folder ".", "/vagrant", type: "rsync"
- # if Vagrant.has_plugin?("vagrant-proxyconf")
- # config.proxy.http = "http://192.168.2.108:7890/"
- # config.proxy.https = "http://192.168.2.108:7890/"
- # config.proxy.no_proxy = "localhost,127.0.0.1,.example.com"
- # end
- # config.vm.provision "shell", path: "vagrant-installer.sh"
- end
|