Vagrantfile 495 B

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