Skip to content

Instantly share code, notes, and snippets.

@toomuchpete
Created November 24, 2014 17:42
Show Gist options
  • Save toomuchpete/5b0b7ec2c404463763b0 to your computer and use it in GitHub Desktop.
Save toomuchpete/5b0b7ec2c404463763b0 to your computer and use it in GitHub Desktop.
AFDC Leagues Site
Vagrant.configure("2") do |config|
config.vm.box = "afdc-vm"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.network :private_network, ip: "192.168.33.102"
config.hostsupdater.aliases = %w(www.afdc.local leagues.afdc.local)
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment