Skip to content

Instantly share code, notes, and snippets.

@64lines
Last active August 25, 2017 22:16
Show Gist options
  • Select an option

  • Save 64lines/4d371902f39abcff344517c0263fd657 to your computer and use it in GitHub Desktop.

Select an option

Save 64lines/4d371902f39abcff344517c0263fd657 to your computer and use it in GitHub Desktop.
[VAGRANT] - Basic Vagrant File
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.hostname = "sakai-vm"
config.vm.network :forwarded_port, guest: 80, host: 80, auto_correct: false
config.vm.network :forwarded_port, guest: 8080, host: 8080, auto_correct: false
config.vm.synced_folder ".", "/vagrant"
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end
config.vm.define :sakai,primary: true do |sakai|
#headsup.vm.provision "shell", path: "bash/bootstrap.sh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment