Skip to content

Instantly share code, notes, and snippets.

@suplo
Created March 20, 2014 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suplo/9658101 to your computer and use it in GitHub Desktop.
Save suplo/9658101 to your computer and use it in GitHub Desktop.
Canvas LMS
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = 'precise64'
config.vm.host_name = 'canvas-dev'
config.vm.customize [
"modifyvm", :id,
"--memory", 4096,
"--natdnshostresolver1", "on",
'--ioapic', 'on',
'--cpus', '2',
]
config.vm.forward_port 443, 3333
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment