Skip to content

Instantly share code, notes, and snippets.

@ryandotclair
Created October 26, 2015 16:18
Show Gist options
  • Save ryandotclair/343e3495a92b96a82bb8 to your computer and use it in GitHub Desktop.
Save ryandotclair/343e3495a92b96a82bb8 to your computer and use it in GitHub Desktop.
Chef Simple Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "centos_6.7"
config.vm.box_url = "bento/centos-6.7"
config.vm.network "forwarded_port", guest: 80, host: 6080
config.vm.network "forwarded_port", guest: 443, host: 6081
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "1024"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment