Created
November 24, 2014 17:42
-
-
Save toomuchpete/5b0b7ec2c404463763b0 to your computer and use it in GitHub Desktop.
AFDC Leagues Site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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