Skip to content

Instantly share code, notes, and snippets.

@bigdaz
Created April 8, 2020 17:07
Show Gist options
  • Save bigdaz/b3e51d45fe8bc1509898ddd14e2833f3 to your computer and use it in GitHub Desktop.
Save bigdaz/b3e51d45fe8bc1509898ddd14e2833f3 to your computer and use it in GitHub Desktop.
GE Vagrant / VirtualBox config
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network "forwarded_port", guest: 8800, host: 8800
config.vm.network "forwarded_port", guest: 80, host: 80
config.vm.network "forwarded_port", guest: 443, host: 443
config.vm.provider "virtualbox" do |vb|
vb.memory = "8192"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment